mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 00:44:32 +01:00
93 lines
3.6 KiB
PHP
93 lines
3.6 KiB
PHP
<?php
|
|
|
|
require_once '_inc.php';
|
|
|
|
function test_Minify_CSS_UriRewriter()
|
|
{
|
|
global $thisDir;
|
|
|
|
Minify_CSS_UriRewriter::$debugText = '';
|
|
$in = file_get_contents($thisDir . '/_test_files/css_uriRewriter/in.css');
|
|
$expected = file_get_contents($thisDir . '/_test_files/css_uriRewriter/exp.css');
|
|
$actual = Minify_CSS_UriRewriter::rewrite(
|
|
$in
|
|
,$thisDir . '/_test_files/css_uriRewriter' // currentDir
|
|
,$thisDir // use DOCUMENT_ROOT = '/full/path/to/min_unit_tests'
|
|
);
|
|
|
|
$passed = assertTrue($expected === $actual, 'Minify_CSS_UriRewriter : rewrite');
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
echo "\n---Input:\n\n{$in}\n";
|
|
echo "\n---Output: " .countBytes($actual). " bytes\n\n{$actual}\n\n";
|
|
if (!$passed) {
|
|
echo "---Expected: " .countBytes($expected). " bytes\n\n{$expected}\n\n\n";
|
|
}
|
|
|
|
// show debugging only when test run directly
|
|
echo "--- Minify_CSS_UriRewriter::\$debugText\n\n"
|
|
, Minify_CSS_UriRewriter::$debugText;
|
|
}
|
|
|
|
|
|
Minify_CSS_UriRewriter::$debugText = '';
|
|
$in = file_get_contents($thisDir . '/_test_files/css_uriRewriter/in.css');
|
|
$expected = file_get_contents($thisDir . '/_test_files/css_uriRewriter/exp_prepend.css');
|
|
$actual = Minify_CSS_UriRewriter::prepend($in, 'http://cnd.com/A/B/');
|
|
|
|
$passed = assertTrue($expected === $actual, 'Minify_CSS_UriRewriter : prepend1');
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
echo "\n---Input:\n\n{$in}\n";
|
|
echo "\n---Output: " .countBytes($actual). " bytes\n\n{$actual}\n\n";
|
|
if (!$passed) {
|
|
echo "---Expected: " .countBytes($expected). " bytes\n\n{$expected}\n\n\n";
|
|
}
|
|
|
|
// show debugging only when test run directly
|
|
echo "--- Minify_CSS_UriRewriter::\$debugText\n\n"
|
|
, Minify_CSS_UriRewriter::$debugText;
|
|
}
|
|
|
|
|
|
Minify_CSS_UriRewriter::$debugText = '';
|
|
$in = file_get_contents($thisDir . '/_test_files/css_uriRewriter/in.css');
|
|
$expected = file_get_contents($thisDir . '/_test_files/css_uriRewriter/exp_prepend2.css');
|
|
$actual = Minify_CSS_UriRewriter::prepend($in, '//cnd.com/A/B/');
|
|
|
|
$passed = assertTrue($expected === $actual, 'Minify_CSS_UriRewriter : prepend2');
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
echo "\n---Input:\n\n{$in}\n";
|
|
echo "\n---Output: " .countBytes($actual). " bytes\n\n{$actual}\n\n";
|
|
if (!$passed) {
|
|
echo "---Expected: " .countBytes($expected). " bytes\n\n{$expected}\n\n\n";
|
|
}
|
|
|
|
// show debugging only when test run directly
|
|
echo "--- Minify_CSS_UriRewriter::\$debugText\n\n"
|
|
, Minify_CSS_UriRewriter::$debugText;
|
|
}
|
|
|
|
|
|
Minify_CSS_UriRewriter::$debugText = '';
|
|
$in = '../../../../assets/skins/sam/sprite.png';
|
|
$exp = '/yui/assets/skins/sam/sprite.png';
|
|
$actual = Minify_CSS_UriRewriter::rewriteRelative(
|
|
$in
|
|
,'sf_root_dir\web\yui\menu\assets\skins\sam'
|
|
,'sf_root_dir\web'
|
|
);
|
|
|
|
$passed = assertTrue($exp === $actual, 'Minify_CSS_UriRewriter : Issue 99');
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
echo "\n---Input:\n\n{$in}\n";
|
|
echo "\n---Output: " .countBytes($actual). " bytes\n\n{$actual}\n\n";
|
|
if (!$passed) {
|
|
echo "---Expected: " .countBytes($exp). " bytes\n\n{$exp}\n\n\n";
|
|
}
|
|
|
|
// show debugging only when test run directly
|
|
echo "--- Minify_CSS_UriRewriter::\$debugText\n\n"
|
|
, Minify_CSS_UriRewriter::$debugText;
|
|
}
|
|
}
|
|
|
|
test_Minify_CSS_UriRewriter(); |