This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo fix for obj pod
[perl5.git] / t / comp / parser.t
1 #!./perl
2
3 # Checks if the parser behaves correctly in edge cases
4 # (including weird syntax errors)
5
6 print "1..154\n";
7
8 sub failed {
9     my ($got, $expected, $name) = @_;
10
11     print "not ok $test - $name\n";
12     my @caller = caller(1);
13     print "# Failed test at $caller[1] line $caller[2]\n";
14     if (defined $got) {
15         print "# Got '$got'\n";
16     } else {
17         print "# Got undef\n";
18     }
19     print "# Expected $expected\n";
20     return;
21 }
22
23 sub like {
24     my ($got, $pattern, $name) = @_;
25     $test = $test + 1;
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).
30         return 1;
31     }
32     failed($got, $pattern, $name);
33 }
34
35 sub is {
36     my ($got, $expect, $name) = @_;
37     $test = $test + 1;
38     if (defined $expect) {
39         if (defined $got && $got eq $expect) {
40             print "ok $test - $name\n";
41             return 1;
42         }
43         failed($got, "'$expect'", $name);
44     } else {
45         if (!defined $got) {
46             print "ok $test - $name\n";
47             return 1;
48         }
49         failed($got, 'undef', $name);
50     }
51 }
52
53 eval '%@x=0;';
54 like( $@, qr/^Can't modify hash dereference in repeat \(x\)/, '%@x=0' );
55
56 # Bug 20010422.005
57 eval q{{s//${}/; //}};
58 like( $@, qr/syntax error/, 'syntax error, used to dump core' );
59
60 # Bug 20010528.007
61 eval q/"\x{"/;
62 like( $@, qr/^Missing right brace on \\x/,
63     'syntax error in string, used to dump core' );
64
65 eval q/"\N{"/;
66 like( $@, qr/^Missing right brace on \\N/,
67     'syntax error in string with incomplete \N' );
68 eval q/"\Nfoo"/;
69 like( $@, qr/^Missing braces on \\N/,
70     'syntax error in string with incomplete \N' );
71
72 eval q/"\o{"/;
73 like( $@, qr/^Missing right brace on \\o/,
74     'syntax error in string with incomplete \o' );
75 eval q/"\ofoo"/;
76 like( $@, qr/^Missing braces on \\o/,
77     'syntax error in string with incomplete \o' );
78
79 eval "a.b.c.d.e.f;sub";
80 like( $@, qr/^Illegal declaration of anonymous subroutine/,
81     'found by Markov chain stress testing' );
82
83 # Bug 20010831.001
84 eval '($a, b) = (1, 2);';
85 like( $@, qr/^Can't modify constant item in list assignment/,
86     'bareword in list assignment' );
87
88 eval 'tie FOO, "Foo";';
89 like( $@, qr/^Can't modify constant item in tie /,
90     'tying a bareword causes a segfault in 5.6.1' );
91
92 eval 'undef foo';
93 like( $@, qr/^Can't modify constant item in undef operator /,
94     'undefing constant causes a segfault in 5.6.1 [ID 20010906.019]' );
95
96 eval 'read($bla, FILE, 1);';
97 like( $@, qr/^Can't modify constant item in read /,
98     'read($var, FILE, 1) segfaults on 5.6.1 [ID 20011025.054]' );
99
100 # This used to dump core (bug #17920)
101 eval q{ sub { sub { f1(f2();); my($a,$b,$c) } } };
102 like( $@, qr/error/, 'lexical block discarded by yacc' );
103
104 # bug #18573, used to corrupt memory
105 eval q{ "\c" };
106 like( $@, qr/^Missing control char name in \\c/, q("\c" string) );
107
108 eval q{ qq(foo$) };
109 like( $@, qr/Final \$ should be \\\$ or \$name/, q($ at end of "" string) );
110
111 # two tests for memory corruption problems in the said variables
112 # (used to dump core or produce strange results)
113
114 is( "\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Q\Qa", "a", "PL_lex_casestack" );
115
116 eval {
117 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
118 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
119 {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
120 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
121 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
122 }}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
123 };
124 is( $@, '', 'PL_lex_brackstack' );
125
126 {
127     # tests for bug #20716
128     undef $a;
129     undef @b;
130     my $a="A";
131     is("${a}{", "A{", "interpolation, qq//");
132     is("${a}[", "A[", "interpolation, qq//");
133     my @b=("B");
134     is("@{b}{", "B{", "interpolation, qq//");
135     is(qr/${a}\{/, '(?^:A\{)', "interpolation, qr//");
136     my $c = "A{";
137     $c =~ /${a}\{/;
138     is($&, 'A{', "interpolation, m//");
139     $c =~ s/${a}\{/foo/;
140     is($c, 'foo', "interpolation, s/...//");
141     $c =~ s/foo/${a}{/;
142     is($c, 'A{', "interpolation, s//.../");
143     is(<<"${a}{", "A{ A[ B{\n", "interpolation, here doc");
144 ${a}{ ${a}[ @{b}{
145 ${a}{
146 }
147
148 eval q{ sub a(;; &) { } a { } };
149 is($@, '', "';&' sub prototype confuses the lexer");
150
151 # Bug #21575
152 # ensure that the second print statement works, by playing a bit
153 # with the test output.
154 my %data = ( foo => "\n" );
155 print "#";
156 print(
157 $data{foo});
158 $test = $test + 1;
159 print "ok $test\n";
160
161 # Bug #21875
162 # { q.* => ... } should be interpreted as hash, not block
163
164 foreach my $line (split /\n/, <<'EOF')
165 1 { foo => 'bar' }
166 1 { qoo => 'bar' }
167 1 { q   => 'bar' }
168 1 { qq  => 'bar' }
169 0 { q,'bar', }
170 0 { q=bar= }
171 0 { qq=bar= }
172 1 { q=bar= => 'bar' }
173 EOF
174 {
175     my ($expect, $eval) = split / /, $line, 2;
176     my $result = eval $eval;
177     is($@, '', "eval $eval");
178     is(ref $result, $expect ? 'HASH' : '', $eval);
179 }
180
181 # Bug #24212
182 {
183     local $SIG{__WARN__} = sub { }; # silence mandatory warning
184     eval q{ my $x = -F 1; };
185     like( $@, qr/(?i:syntax|parse) error .* near "F 1"/, "unknown filetest operators" );
186     is(
187         eval q{ sub F { 42 } -F 1 },
188         '-42',
189         '-F calls the F function'
190     );
191 }
192
193 # Bug #24762
194 {
195     eval q{ *foo{CODE} ? 1 : 0 };
196     is( $@, '', "glob subscript in conditional" );
197 }
198
199 # Bug #25824
200 {
201     eval q{ sub f { @a=@b=@c;  {use} } };
202     like( $@, qr/syntax error/, "use without body" );
203 }
204
205 # [perl #2738] perl segfautls on input
206 {
207     eval q{ sub _ <> {} };
208     like($@, qr/Illegal declaration of subroutine main::_/, "readline operator as prototype");
209
210     eval q{ $s = sub <> {} };
211     like($@, qr/Illegal declaration of anonymous subroutine/, "readline operator as prototype");
212
213     eval q{ sub _ __FILE__ {} };
214     like($@, qr/Illegal declaration of subroutine main::_/, "__FILE__ as prototype");
215 }
216
217 # tests for "Bad name"
218 eval q{ foo::$bar };
219 like( $@, qr/Bad name after foo::/, 'Bad name after foo::' );
220 eval q{ foo''bar };
221 like( $@, qr/Bad name after foo'/, 'Bad name after foo\'' );
222
223 # test for ?: context error
224 eval q{($a ? $x : ($y)) = 5};
225 like( $@, qr/Assignment to both a list and a scalar/, 'Assignment to both a list and a scalar' );
226
227 eval q{ s/x/#/e };
228 is( $@, '', 'comments in s///e' );
229
230 # these five used to coredump because the op cleanup on parse error could
231 # be to the wrong pad
232
233 eval q[
234     sub { our $a= 1;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;
235             sub { my $z
236 ];
237
238 like($@, qr/Missing right curly/, 'nested sub syntax error' );
239
240 eval q[
241     sub { my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
242             sub { my $z
243 ];
244 like($@, qr/Missing right curly/, 'nested sub syntax error 2' );
245
246 eval q[
247     sub { our $a= 1;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;$a;
248             use DieDieDie;
249 ];
250
251 like($@, qr/Can't locate DieDieDie.pm/, 'croak cleanup' );
252
253 eval q[
254     sub { my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
255             use DieDieDie;
256 ];
257
258 like($@, qr/Can't locate DieDieDie.pm/, 'croak cleanup 2' );
259
260
261 eval q[
262     my @a;
263     my ($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l,$m,$n,$o,$p,$q,$r,$s,$r);
264     @a =~ s/a/b/; # compile-time error
265     use DieDieDie;
266 ];
267
268 like($@, qr/Can't modify/, 'croak cleanup 3' );
269
270 # these might leak, or have duplicate frees, depending on the bugginess of
271 # the parser stack 'fail in reduce' cleanup code. They're here mainly as
272 # something to be run under valgrind, with PERL_DESTRUCT_LEVEL=1.
273
274 eval q[ BEGIN { } ] for 1..10;
275 is($@, "", 'BEGIN 1' );
276
277 eval q[ BEGIN { my $x; $x = 1 } ] for 1..10;
278 is($@, "", 'BEGIN 2' );
279
280 eval q[ BEGIN { \&foo1 } ] for 1..10;
281 is($@, "", 'BEGIN 3' );
282
283 eval q[ sub foo2 { } ] for 1..10;
284 is($@, "", 'BEGIN 4' );
285
286 eval q[ sub foo3 { my $x; $x=1 } ] for 1..10;
287 is($@, "", 'BEGIN 5' );
288
289 eval q[ BEGIN { die } ] for 1..10;
290 like($@, qr/BEGIN failed--compilation aborted/, 'BEGIN 6' );
291
292 eval q[ BEGIN {\&foo4; die } ] for 1..10;
293 like($@, qr/BEGIN failed--compilation aborted/, 'BEGIN 7' );
294
295 {
296   # RT #70934
297   # check both the specific case in the ticket, and a few other paths into
298   # S_scan_ident()
299   # simplify long ids
300   my $x100 = "x" x 256;
301   my $xFE = "x" x 254;
302   my $xFD = "x" x 253;
303   my $xFC = "x" x 252;
304   my $xFB = "x" x 251;
305
306   eval qq[ \$#$xFB ];
307   is($@, "", "251 character \$# sigil ident ok");
308   eval qq[ \$#$xFC ];
309   like($@, qr/Identifier too long/, "too long id in \$# sigil ctx");
310
311   eval qq[ \$$xFB ];
312   is($@, "", "251 character \$ sigil ident ok");
313   eval qq[ \$$xFC ];
314   like($@, qr/Identifier too long/, "too long id in \$ sigil ctx");
315
316   eval qq[ %$xFB ];
317   is($@, "", "251 character % sigil ident ok");
318   eval qq[ %$xFC ];
319   like($@, qr/Identifier too long/, "too long id in % sigil ctx");
320
321   eval qq[ \\&$xFB ]; # take a ref since I don't want to call it
322   is($@, "", "251 character & sigil ident ok");
323   eval qq[ \\&$xFC ];
324   like($@, qr/Identifier too long/, "too long id in & sigil ctx");
325
326   eval qq[ *$xFC ];
327   is($@, "", "252 character glob ident ok");
328   eval qq[ *$xFD ];
329   like($@, qr/Identifier too long/, "too long id in glob ctx");
330
331   eval qq[ for $xFD ];
332   like($@, qr/Missing \$ on loop variable/,
333        "253 char id ok, but a different error");
334   eval qq[ for $xFE; ];
335   like($@, qr/Identifier too long/, "too long id in for ctx");
336
337   # the specific case from the ticket
338   my $x = "x" x 257;
339   eval qq[ for $x ];
340   like($@, qr/Identifier too long/, "too long id ticket case");
341 }
342
343 {
344   is(exists &zlonk, '', 'sub not present');
345   eval qq[ {sub zlonk} ];
346   is($@, '', 'sub declaration followed by a closing curly');
347   is(exists &zlonk, 1, 'sub now stubbed');
348   is(defined &zlonk, '', 'but no body defined');
349 }
350
351 # [perl #113016] CORE::print::foo
352 sub CORE'print'foo { 43 } # apostrophes intentional; do not tempt fate
353 sub CORE'foo'bar { 43 }
354 is CORE::print::foo, 43, 'CORE::print::foo is not CORE::print ::foo';
355 is scalar eval "CORE::foo'bar", 43, "CORE::foo'bar is not an error";
356
357 # bug #71748
358 eval q{
359         $_ = "";
360         s/(.)/
361         {
362             #
363         }->{$1};
364         /e;
365         1;
366 };
367 is($@, "", "multiline whitespace inside substitute expression");
368
369 eval '@A =~ s/a/b/; # compilation error
370       sub tahi {}
371       sub rua;
372       sub toru ($);
373       sub wha :lvalue;
374       sub rima ($%&*$&*\$%\*&$%*&) :method;
375       sub ono :lvalue { die }
376       sub whitu (_) { die }
377       sub waru ($;) :method { die }
378       sub iwa { die }
379       BEGIN { }';
380 is $::{tahi}, undef, 'empty sub decl ignored after compilation error';
381 is $::{rua}, undef, 'stub decl ignored after compilation error';
382 is $::{toru}, undef, 'stub+proto decl ignored after compilation error';
383 is $::{wha}, undef, 'stub+attr decl ignored after compilation error';
384 is $::{rima}, undef, 'stub+proto+attr ignored after compilation error';
385 is $::{ono}, undef, 'sub decl with attr ignored after compilation error';
386 is $::{whitu}, undef, 'sub decl w proto ignored after compilation error';
387 is $::{waru}, undef, 'sub w attr+proto ignored after compilation error';
388 is $::{iwa}, undef, 'non-empty sub decl ignored after compilation error';
389 is *BEGIN{CODE}, undef, 'BEGIN leaves no stub after compilation error';
390
391 $test = $test + 1;
392 "ok $test - format inside re-eval" =~ /(?{
393     format =
394 @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
395 $_
396 .
397 write
398 }).*/;
399
400 eval '
401 "${;
402
403 =pod
404
405 =cut
406
407 }";
408 ';
409 is $@, "", 'pod inside string in string eval';
410 "${;
411
412 =pod
413
414 =cut
415
416 }";
417 print "ok ", ++$test, " - pod inside string outside of string eval\n";
418
419 like "blah blah blah\n", qr/${\ <<END
420 blah blah blah
421 END
422  }/, 'here docs in multiline quoted construct';
423 like "blah blah blah\n", eval q|qr/${\ <<END
424 blah blah blah
425 END
426  }/|, 'here docs in multiline quoted construct in string eval';
427
428 # Unterminated here-docs in subst in eval; used to crash
429 eval 's/${<<END}//';
430 eval 's//${<<END}/';
431 print "ok ", ++$test, " - unterminated here-docs in s/// in string eval\n";
432
433 sub 'Hello'_he_said (_);
434 is prototype "Hello::_he_said", '_', 'initial tick in sub declaration';
435
436 {
437     my @x = 'string';
438     is(eval q{ "$x[0]->strung" }, 'string->strung',
439         'literal -> after an array subscript within ""');
440     @x = ['string'];
441     # this used to give "string"
442     like("$x[0]-> [0]", qr/^ARRAY\([^)]*\)-> \[0]\z/,
443         'literal -> [0] after an array subscript within ""');
444 }
445
446 eval 'no if $] >= 5.17.4 warnings => "deprecated"';
447 is 1,1, ' no crash for "no ... syntax error"';
448
449 for my $pkg(()){}
450 $pkg = 3;
451 is $pkg, 3, '[perl #114942] for my $foo()){} $foo';
452
453 # Add new tests HERE (above this line)
454
455 # bug #74022: Loop on characters in \p{OtherIDContinue}
456 # This test hangs if it fails.
457 eval chr 0x387;
458 is(1,1, '[perl #74022] Parser looping on OtherIDContinue chars');
459
460 # More awkward tests for #line. Keep these at the end, as they will screw
461 # with sane line reporting for any other test failures
462
463 sub check ($$$) {
464     my ($file, $line, $name) =  @_;
465     my (undef, $got_file, $got_line) = caller;
466     like ($got_file, $file, "file of $name");
467     is ($got_line, $line, "line of $name");
468 }
469
470 my $this_file = qr/parser\.t(?:\.[bl]eb?)?$/;
471 #line 3
472 check($this_file, 3, "bare line");
473
474 # line 5
475 check($this_file, 5, "bare line with leading space");
476
477 #line 7 
478 check($this_file, 7, "trailing space still valid");
479
480 # line 11 
481 check($this_file, 11, "leading and trailing");
482
483 #       line 13
484 check($this_file, 13, "leading tab");
485
486 #line   17
487 check($this_file, 17, "middle tab");
488
489 #line                                                                        19
490 check($this_file, 19, "loadsaspaces");
491
492 #line 23 KASHPRITZA
493 check(qr/^KASHPRITZA$/, 23, "bare filename");
494
495 #line 29 "KAHEEEE"
496 check(qr/^KAHEEEE$/, 29, "filename in quotes");
497
498 #line 31 "CLINK CLOINK BZZT"
499 check(qr/^CLINK CLOINK BZZT$/, 31, "filename with spaces in quotes");
500
501 #line 37 "THOOM THOOM"
502 check(qr/^THOOM THOOM$/, 37, "filename with tabs in quotes");
503
504 #line 41 "GLINK PLINK GLUNK DINK" 
505 check(qr/^GLINK PLINK GLUNK DINK$/, 41, "a space after the quotes");
506
507 #line 43 "BBFRPRAFPGHPP
508 check(qr/^"BBFRPRAFPGHPP$/, 43, "actually missing a quote is still valid");
509
510 #line 47 bang eth
511 check(qr/^"BBFRPRAFPGHPP$/, 46, "but spaces aren't allowed without quotes");
512
513 #line 77sevenseven
514 check(qr/^"BBFRPRAFPGHPP$/, 49, "need a space after the line number");
515
516 eval <<'EOSTANZA'; die $@ if $@;
517 #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."
518 check(qr/^With.*down\.$/, 51, "Overflow the second small buffer check");
519 EOSTANZA
520
521 # And now, turn on the debugger flag for long names
522 $^P = 0x100;
523
524 #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."
525 check(qr/^For we.*must die\.$/, 53, "Our long line is set up");
526
527 eval <<'EOT'; die $@ if $@;
528 #line 59 " "
529 check(qr/^ $/, 59, "Overflow the first small buffer check only");
530 EOT
531
532 eval <<'EOSTANZA'; die $@ if $@;
533 #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."
534 check(qr/^Great hail!.*no more\.$/, 61, "Overflow both small buffer checks");
535 EOSTANZA
536
537 #line 531 parser.t
538 <<EOU; check('parser\.t', 531, 'on same line as heredoc');
539 EOU
540 s//<<EOV/e if 0;
541 EOV
542 check('parser\.t', 535, 'after here-doc in quotes');
543 <<EOW;
544 ${check('parser\.t', 537, 'first line of interp in here-doc');;
545   check('parser\.t', 538, 'second line of interp in here-doc');}
546 EOW
547
548 __END__
549 # Don't add new tests HERE. See note above