3 # Checks if the parser behaves correctly in edge cases
4 # (including weird syntax errors)
9 my ($got, $expected, $name) = @_;
11 print "not ok $test - $name\n";
12 my @caller = caller(1);
13 print "# Failed test at $caller[1] line $caller[2]\n";
15 print "# Got '$got'\n";
17 print "# Got undef\n";
19 print "# Expected $expected\n";
24 my ($got, $pattern, $name) = @_;
26 if (defined $got && $got =~ $pattern) {
27 print "ok $test - $name\n";
28 # Principle of least surprise - maintain the expected interface, even
29 # though we aren't using it here (yet).
32 failed($got, $pattern, $name);
36 my ($got, $expect, $name) = @_;
38 if (defined $expect) {
39 if (defined $got && $got eq $expect) {
40 print "ok $test - $name\n";
43 failed($got, "'$expect'", $name);
46 print "ok $test - $name\n";
49 failed($got, 'undef', $name);
54 like( $@, qr/^Can't modify hash dereference in repeat \(x\)/, '%@x=0' );
57 eval q{{s//${}/; //}};
58 like( $@, qr/syntax error/, 'syntax error, used to dump core' );
62 like( $@, qr/^Missing right brace on \\x/,
63 'syntax error in string, used to dump core' );
66 like( $@, qr/^Missing right brace on \\N/,
67 'syntax error in string with incomplete \N' );
69 like( $@, qr/^Missing braces on \\N/,
70 'syntax error in string with incomplete \N' );
72 eval "a.b.c.d.e.f;sub";
73 like( $@, qr/^Illegal declaration of anonymous subroutine/,
74 'found by Markov chain stress testing' );
77 eval '($a, b) = (1, 2);';
78 like( $@, qr/^Can't modify constant item in list assignment/,
79 'bareword in list assignment' );
81 eval 'tie FOO, "Foo";';
82 like( $@, qr/^Can't modify constant item in tie /,
83 'tying a bareword causes a segfault in 5.6.1' );
86 like( $@, qr/^Can't modify constant item in undef operator /,
87 'undefing constant causes a segfault in 5.6.1 [ID 20010906.019]' );
89 eval 'read($bla, FILE, 1);';
90 like( $@, qr/^Can't modify constant item in read /,
91 'read($var, FILE, 1) segfaults on 5.6.1 [ID 20011025.054]' );
93 # This used to dump core (bug #17920)
94 eval q{ sub { sub { f1(f2();); my($a,$b,$c) } } };
95 like( $@, qr/error/, 'lexical block discarded by yacc' );
97 # bug #18573, used to corrupt memory
99 like( $@, qr/^Missing control char name in \\c/, q("\c" string) );
102 like( $@, qr/Final \$ should be \\\$ or \$name/, q($ at end of "" string) );
104 # two tests for memory corruption problems in the said variables
105 # (used to dump core or produce strange results)
107 is( "\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Qa", "a", "PL_lex_casestack" );
110 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
111 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
112 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
113 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
114 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
115 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
117 is( $@, '', 'PL_lex_brackstack' );
120 # tests for bug #20716
124 is("${a}{", "A{", "interpolation, qq//");
125 is("${a}[", "A[", "interpolation, qq//");
127 is("@{b}{", "B{", "interpolation, qq//");
128 is(qr/${a}{/, '(?-xism:A{)', "interpolation, qr//");
131 is($&, 'A{', "interpolation, m//");
133 is($c, 'foo', "interpolation, s/...//");
135 is($c, 'A{', "interpolation, s//.../");
136 is(<<"${a}{", "A{ A[ B{\n", "interpolation, here doc");
141 eval q{ sub a(;; &) { } a { } };
142 is($@, '', "';&' sub prototype confuses the lexer");
145 # ensure that the second print statement works, by playing a bit
146 # with the test output.
147 my %data = ( foo => "\n" );
155 # { q.* => ... } should be interpreted as hash, not block
157 foreach my $line (split /\n/, <<'EOF')
165 1 { q=bar= => 'bar' }
168 my ($expect, $eval) = split / /, $line, 2;
169 my $result = eval $eval;
170 is($@, '', "eval $eval");
171 is(ref $result, $expect ? 'HASH' : '', $eval);
176 local $SIG{__WARN__} = sub { }; # silence mandatory warning
177 eval q{ my $x = -F 1; };
178 like( $@, qr/(?i:syntax|parse) error .* near "F 1"/, "unknown filetest operators" );
180 eval q{ sub F { 42 } -F 1 },
182 '-F calls the F function'
188 eval q{ *foo{CODE} ? 1 : 0 };
189 is( $@, '', "glob subscript in conditional" );
194 eval q{ sub f { @a=@b=@c; {use} } };
195 like( $@, qr/syntax error/, "use without body" );
198 # [perl #2738] perl segfautls on input
200 eval q{ sub _ <> {} };
201 like($@, qr/Illegal declaration of subroutine main::_/, "readline operator as prototype");
203 eval q{ $s = sub <> {} };
204 like($@, qr/Illegal declaration of anonymous subroutine/, "readline operator as prototype");
206 eval q{ sub _ __FILE__ {} };
207 like($@, qr/Illegal declaration of subroutine main::_/, "__FILE__ as prototype");
210 # tests for "Bad name"
212 like( $@, qr/Bad name after foo::/, 'Bad name after foo::' );
214 like( $@, qr/Bad name after foo'/, 'Bad name after foo\'' );
216 # test for ?: context error
217 eval q{($a ? $x : ($y)) = 5};
218 like( $@, qr/Assignment to both a list and a scalar/, 'Assignment to both a list and a scalar' );
221 is( $@, '', 'comments in s///e' );
223 # these five used to coredump because the op cleanup on parse error could
224 # be to the wrong pad
227 sub { our $a= 1;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;
231 like($@, qr/Missing right curly/, 'nested sub syntax error' );
234 sub { my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
237 like($@, qr/Missing right curly/, 'nested sub syntax error 2' );
240 sub { our $a= 1;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;
244 like($@, qr/Can't locate DieDieDie.pm/, 'croak cleanup' );
247 sub { my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
251 like($@, qr/Can't locate DieDieDie.pm/, 'croak cleanup 2' );
256 my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
257 @a =~ s/a/b/; # compile-time error
261 like($@, qr/Can't modify/, 'croak cleanup 3' );
263 # these might leak, or have duplicate frees, depending on the bugginess of
264 # the parser stack 'fail in reduce' cleanup code. They're here mainly as
265 # something to be run under valgrind, with PERL_DESTRUCT_LEVEL=1.
267 eval q[ BEGIN { } ] for 1..10;
268 is($@, "", 'BEGIN 1' );
270 eval q[ BEGIN { my $x; $x = 1 } ] for 1..10;
271 is($@, "", 'BEGIN 2' );
273 eval q[ BEGIN { \&foo1 } ] for 1..10;
274 is($@, "", 'BEGIN 3' );
276 eval q[ sub foo2 { } ] for 1..10;
277 is($@, "", 'BEGIN 4' );
279 eval q[ sub foo3 { my $x; $x=1 } ] for 1..10;
280 is($@, "", 'BEGIN 5' );
282 eval q[ BEGIN { die } ] for 1..10;
283 like($@, qr/BEGIN failed--compilation aborted/, 'BEGIN 6' );
285 eval q[ BEGIN {\&foo4; die } ] for 1..10;
286 like($@, qr/BEGIN failed--compilation aborted/, 'BEGIN 7' );
290 # check both the specific case in the ticket, and a few other paths into
293 my $x100 = "x" x 256;
300 is($@, "", "251 character \$# sigil ident ok");
302 like($@, qr/Identifier too long/, "too long id in \$# sigil ctx");
305 is($@, "", "251 character \$ sigil ident ok");
307 like($@, qr/Identifier too long/, "too long id in \$ sigil ctx");
310 is($@, "", "251 character % sigil ident ok");
312 like($@, qr/Identifier too long/, "too long id in % sigil ctx");
314 eval qq[ \\&$xFC ]; # take a ref since I don't want to call it
315 is($@, "", "252 character & sigil ident ok");
317 like($@, qr/Identifier too long/, "too long id in & sigil ctx");
320 is($@, "", "252 character glob ident ok");
322 like($@, qr/Identifier too long/, "too long id in glob ctx");
325 like($@, qr/Missing \$ on loop variable/,
326 "253 char id ok, but a different error");
327 eval qq[ for $xFE; ];
328 like($@, qr/Identifier too long/, "too long id in for ctx");
330 # the specific case from the ticket
333 like($@, qr/Identifier too long/, "too long id ticket case");
337 is(exists &zlonk, '', 'sub not present');
338 eval qq[ {sub zlonk} ];
339 is($@, '', 'sub declaration followed by a closing curly');
340 is(exists &zlonk, 1, 'sub now stubbed');
341 is(defined &zlonk, '', 'but no body defined');
344 # Add new tests HERE:
346 # More awkward tests for #line. Keep these at the end, as they will screw
347 # with sane line reporting for any other test failures
350 my ($file, $line, $name) = @_;
351 my (undef, $got_file, $got_line) = caller;
352 like ($got_file, $file, "file of $name");
353 is ($got_line, $line, "line of $name");
356 my $this_file = qr/parser\.t(?:\.[bl]eb?)?$/;
358 check($this_file, 3, "bare line");
361 check($this_file, 5, "bare line with leading space");
364 check($this_file, 7, "trailing space still valid");
367 check($this_file, 11, "leading and trailing");
370 check($this_file, 13, "leading tab");
373 check($this_file, 17, "middle tab");
376 check($this_file, 19, "loadsaspaces");
379 check(qr/^KASHPRITZA$/, 23, "bare filename");
382 check(qr/^KAHEEEE$/, 29, "filename in quotes");
384 #line 31 "CLINK CLOINK BZZT"
385 check(qr/^CLINK CLOINK BZZT$/, 31, "filename with spaces in quotes");
387 #line 37 "THOOM THOOM"
388 check(qr/^THOOM THOOM$/, 37, "filename with tabs in quotes");
390 #line 41 "GLINK PLINK GLUNK DINK"
391 check(qr/^GLINK PLINK GLUNK DINK$/, 41, "a space after the quotes");
393 #line 43 "BBFRPRAFPGHPP
394 check(qr/^"BBFRPRAFPGHPP$/, 43, "actually missing a quote is still valid");
397 check(qr/^"BBFRPRAFPGHPP$/, 46, "but spaces aren't allowed without quotes");
400 check(qr/^"BBFRPRAFPGHPP$/, 49, "need a space after the line number");
402 eval <<'EOSTANZA'; die $@ if $@;
403 #line 51 "With wonderful deathless ditties|We build up the world's great cities,|And out of a fabulous story|We fashion an empire's glory:|One man with a dream, at pleasure,|Shall go forth and conquer a crown;|And three with a new song's measure|Can trample a kingdom down."
404 check(qr/^With.*down\.$/, 51, "Overflow the second small buffer check");
407 # And now, turn on the debugger flag for long names
410 #line 53 "For we are afar with the dawning|And the suns that are not yet high,|And out of the infinite morning|Intrepid you hear us cry-|How, spite of your human scorning,|Once more God's future draws nigh,|And already goes forth the warning|That ye of the past must die."
411 check(qr/^For we.*must die\.$/, 53, "Our long line is set up");
413 eval <<'EOT'; die $@ if $@;
415 check(qr/^ $/, 59, "Overflow the first small buffer check only");
418 eval <<'EOSTANZA'; die $@ if $@;
419 #line 61 "Great hail! we cry to the comers|From the dazzling unknown shore;|Bring us hither your sun and your summers;|And renew our world as of yore;|You shall teach us your song's new numbers,|And things that we dreamed not before:|Yea, in spite of a dreamer who slumbers,|And a singer who sings no more."
420 check(qr/^Great hail!.*no more\.$/, 61, "Overflow both small buffer checks");
425 is(eval q{ "$x[0]->strung" }, 'string->strung',
426 'literal -> after an array subscript within ""');
428 # this used to give "string"
429 like("$x[0]-> [0]", qr/^ARRAY\([^)]*\)-> \[0]\z/,
430 'literal -> [0] after an array subscript within ""');
434 # Don't add new tests HERE. See note above