mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
102 lines
2.6 KiB
PHP
102 lines
2.6 KiB
PHP
|
<?php
|
||
|
|
||
|
function parse_test($test, &$name, &$code, &$expect, &$args) {
|
||
|
$text = @file_get_contents($test);
|
||
|
if (!$text) {
|
||
|
return false;
|
||
|
}
|
||
|
$p1 = strpos($text, '--TEST--');
|
||
|
$p2 = strpos($text, '--ARGS--');
|
||
|
$p3 = strpos($text, '--CODE--');
|
||
|
$p4 = strpos($text, '--EXPECT--');
|
||
|
if ($p1 === false || $p3 === false || $p4 === false || $p1 > $p3 || $p3 > $p4) {
|
||
|
return false;
|
||
|
}
|
||
|
if ($p2 === false) {
|
||
|
$p2 = $p3;
|
||
|
$args = "--save";
|
||
|
} else if ($p1 > $p2 || $p2 > $p3) {
|
||
|
return false;
|
||
|
} else {
|
||
|
$args = trim(substr($text, $p2 + strlen('--ARGS--'), $p3 - $p2 - strlen('--ARGS--')));
|
||
|
}
|
||
|
$name = trim(substr($text, $p1 + strlen('--TEST--'), $p2 - $p1 - strlen('--TEST--')));
|
||
|
$code = trim(substr($text, $p3 + strlen('--CODE--'), $p4 - $p3 - strlen('--CODE--')));
|
||
|
$expect = trim(substr($text, $p4 + strlen('--EXPECT--')));
|
||
|
$expect = str_replace("\r", "", $expect);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
function run_test($test, $name, $code, $expect, $args) {
|
||
|
$base = substr($test, 0, -4);
|
||
|
$input = $base . ".ir";
|
||
|
$output = $base . ".out";
|
||
|
@unlink($input);
|
||
|
@unlink($output);
|
||
|
@unlink("$base.exp");
|
||
|
@unlink("$base.diff");
|
||
|
if (!@file_put_contents($input, $code)) {
|
||
|
return false;
|
||
|
}
|
||
|
@system("./ir $input $args >$output 2>&1");
|
||
|
// if (@system("./ir $input $args 2>&1 >$output") != 0) {
|
||
|
// return false;
|
||
|
// }
|
||
|
$out = @file_get_contents($output);
|
||
|
if ($out === false) {
|
||
|
return false;
|
||
|
}
|
||
|
$out = trim($out);
|
||
|
$out = str_replace("\r", "", $out);
|
||
|
if ($out !== $expect) {
|
||
|
if (!@file_put_contents("$base.exp", "$expect\n")) {
|
||
|
return false;
|
||
|
}
|
||
|
if (@system("diff $base.exp $output > $base.diff") != 0) {
|
||
|
return false;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
@unlink($input);
|
||
|
@unlink($output);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
function run_tests() {
|
||
|
$tests = glob("tests/*.irt");
|
||
|
$bad = array();
|
||
|
$failed = array();
|
||
|
foreach($tests as $test) {
|
||
|
if (parse_test($test, $name, $code, $expect, $opt)) {
|
||
|
if (!run_test($test, $name, $code, $expect, $opt)) {
|
||
|
$failed[$test] = $name;
|
||
|
}
|
||
|
} else {
|
||
|
$bad[] = $test;
|
||
|
}
|
||
|
}
|
||
|
echo "-------------------------------\n";
|
||
|
echo "Test Summary\n";
|
||
|
echo "-------------------------------\n";
|
||
|
if (count($bad) > 0) {
|
||
|
echo "Bad tests: " . count($bad) . "\n";
|
||
|
echo "-------------------------------\n";
|
||
|
foreach ($bad as $test) {
|
||
|
echo "$test\n";
|
||
|
}
|
||
|
echo "-------------------------------\n";
|
||
|
}
|
||
|
echo "Total: " . count($tests) . "\n";
|
||
|
echo "Passed: " . (count($tests) - count($failed)) . "\n";
|
||
|
echo "Failed: " . count($failed) . "\n";
|
||
|
if (count($failed) > 0) {
|
||
|
echo "-------------------------------\n";
|
||
|
foreach ($failed as $test => $name) {
|
||
|
echo "$name [$test]\n";
|
||
|
}
|
||
|
}
|
||
|
echo "-------------------------------\n";
|
||
|
}
|
||
|
|
||
|
run_tests();
|