php-src/tests/lang/syntax_errors.phpt
2020-04-15 09:26:55 +02:00

57 lines
1.9 KiB
PHP

--TEST--
Detailed reporting on specific types of syntax errors
--FILE--
<?php
$badCode = [
"if(1 > 2", /* unclosed ( */
"[1, 2,", /* unclosed [ */
"if(1) { echo 'hello'; ", /* unclosed { */
"(1 + 2));", /* too many ) */
"[1, 2]]", /* too many ] */
"if (1) { } }", /* too many } */
"(1 + 2];", /* ] doesn't match ( */
"[1, 2)];", /* ) doesn't match [ */
"if(1) { echo 'a'; )}", /* ) doesn't match { */
/* separately test cases where the faulty construct spans multiple lines,
since the error message should refer to the starting line in those cases */
"if(1 > 2) {\n echo '1';", /* unclosed (, spans multiple lines */
"[1,\n2,\n3,", /* unclosed [, spans multiple lines */
"{\n echo '1';\n echo '2';", /* unclosed {, spans multiple lines */
"(1 +\n 2 +\n 3))", /* too many ), spans multiple lines */
"[1,\n2,\n3]];", /* too many ], spans multiple lines */
"if (1)\n {\n }}", /* too many }, spans multiple lines */
"(1 +\n\n 2])", /* ] doesn't match (, spans multiple lines */
"[1,\n2,\n3)]", /* ) doesn't match [, spans multiple lines */
"if(1) {\n echo 'a';\n)}", /* ) doesn't match {, spans multiple lines */
];
foreach ($badCode as $code) {
try {
eval($code);
} catch (ParseError $e) {
echo $e->getMessage(), "\n";
}
}
echo "==DONE==\n";
?>
--EXPECT--
Unclosed '('
Unclosed '['
Unclosed '{'
Unmatched ')'
Unmatched ']'
Unmatched '}'
Unclosed '(' does not match ']'
Unclosed '[' does not match ')'
Unclosed '{' does not match ')'
Unclosed '{' on line 1
Unclosed '[' on line 1
Unclosed '{' on line 1
Unmatched ')'
Unmatched ']'
Unmatched '}'
Unclosed '(' on line 1 does not match ']'
Unclosed '[' on line 1 does not match ')'
Unclosed '{' on line 1 does not match ')'
==DONE==