mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 17:02:31 +01:00
min/builder/index.php : + note about CSS imports HISTORY.txt and README.txt additions some text file renaming tools removed
60 lines
2.3 KiB
PHP
60 lines
2.3 KiB
PHP
<?php
|
|
require_once '_inc.php';
|
|
|
|
require_once 'Minify/HTML.php';
|
|
require_once 'Minify/CSS.php';
|
|
require_once 'Minify/Javascript.php';
|
|
|
|
function test_HTML()
|
|
{
|
|
global $thisDir;
|
|
|
|
$src = file_get_contents($thisDir . '/_test_files/html/before.html');
|
|
$minExpected = file_get_contents($thisDir . '/_test_files/html/before.min.html');
|
|
|
|
$time = microtime(true);
|
|
$minOutput = Minify_HTML::minify($src, array(
|
|
'cssMinifier' => array('Minify_CSS', 'minify')
|
|
,'jsMinifier' => array('Minify_Javascript', 'minify')
|
|
));
|
|
$time = microtime(true) - $time;
|
|
|
|
$passed = assertTrue($minExpected === $minOutput, 'Minify_HTML');
|
|
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
if ($passed) {
|
|
echo "\n---Source: ", strlen($src), " bytes\n"
|
|
, "---Output: ", strlen($minOutput), " bytes (", round($time * 1000), " ms)\n\n{$minOutput}\n\n\n";
|
|
} else {
|
|
echo "\n---Output: ", strlen($minOutput), " bytes (", round($time * 1000), " ms)\n\n{$minOutput}\n\n"
|
|
, "---Expected: ", strlen($minExpected), " bytes\n\n{$minExpected}\n\n"
|
|
, "---Source: ", strlen($src), " bytes\n\n{$src}\n\n\n";
|
|
}
|
|
}
|
|
|
|
$src = file_get_contents($thisDir . '/_test_files/html/before2.html');
|
|
$minExpected = file_get_contents($thisDir . '/_test_files/html/before2.min.html');
|
|
|
|
$time = microtime(true);
|
|
$minOutput = Minify_HTML::minify($src, array(
|
|
'cssMinifier' => array('Minify_CSS', 'minify')
|
|
,'jsMinifier' => array('Minify_Javascript', 'minify')
|
|
));
|
|
$time = microtime(true) - $time;
|
|
|
|
$passed = assertTrue($minExpected === $minOutput, 'Minify_HTML');
|
|
|
|
if (__FILE__ === realpath($_SERVER['SCRIPT_FILENAME'])) {
|
|
if ($passed) {
|
|
echo "\n---Source: ", strlen($src), " bytes\n"
|
|
, "---Output: ", strlen($minOutput), " bytes (", round($time * 1000), " ms)\n\n{$minOutput}\n\n\n";
|
|
} else {
|
|
echo "\n---Output: ", strlen($minOutput), " bytes (", round($time * 1000), " ms)\n\n{$minOutput}\n\n"
|
|
, "---Expected: ", strlen($minExpected), " bytes\n\n{$minExpected}\n\n"
|
|
, "---Source: ", strlen($src), " bytes\n\n{$src}\n\n\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
test_HTML();
|