summaryrefslogtreecommitdiff
path: root/tests/lang/syntax_errors.phpt
blob: 1b52c31c6a09639c14f793917e63a1d0fa75e9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--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==