Teach regex optimiser how to handle (?=) and (?<=) properly.
[p5sagit/p5-mst-13.2.git] / t / op / regexp.t
1 #!./perl
2
3 # The tests are in a separate file 't/op/re_tests'.
4 # Each line in that file is a separate test.
5 # There are five columns, separated by tabs.
6 #
7 # Column 1 contains the pattern, optionally enclosed in C<''>.
8 # Modifiers can be put after the closing C<'>.
9 #
10 # Column 2 contains the string to be matched.
11 #
12 # Column 3 contains the expected result:
13 #       y       expect a match
14 #       n       expect no match
15 #       c       expect an error
16 #       B       test exposes a known bug in Perl, should be skipped
17 #       b       test exposes a known bug in Perl, should be skipped if noamp
18 #
19 # Columns 4 and 5 are used only if column 3 contains C<y> or C<c>.
20 #
21 # Column 4 contains a string, usually C<$&>.
22 #
23 # Column 5 contains the expected result of double-quote
24 # interpolating that string after the match, or start of error message.
25 #
26 # Column 6, if present, contains a reason why the test is skipped.
27 # This is printed with "skipped", for harness to pick up.
28 #
29 # \n in the tests are interpolated, as are variables of the form ${\w+}.
30 #
31 # If you want to add a regular expression test that can't be expressed
32 # in this format, don't add it here: put it in op/pat.t instead.
33
34 BEGIN {
35     chdir 't' if -d 't';
36     @INC = '../lib';
37 }
38
39 $iters = shift || 1;            # Poor man performance suite, 10000 is OK.
40
41 open(TESTS,'op/re_tests') || open(TESTS,'t/op/re_tests') || open(TESTS,':op:re_tests') ||
42         die "Can't open re_tests";
43
44 while (<TESTS>) { }
45 $numtests = $.;
46 seek(TESTS,0,0);
47 $. = 0;
48
49 $bang = sprintf "\\%03o", ord "!"; # \41 would not be portable.
50 $ffff  = chr(0xff) x 2;
51 $nulnul = "\0" x 2;
52 $OP = $qr ? 'qr' : 'm';
53
54 $| = 1;
55 print "1..$numtests\n# $iters iterations\n";
56 TEST:
57 while (<TESTS>) {
58     chomp;
59     s/\\n/\n/g;
60     ($pat, $subject, $result, $repl, $expect, $reason) = split(/\t/,$_,6);
61     $input = join(':',$pat,$subject,$result,$repl,$expect);
62     infty_subst(\$pat);
63     infty_subst(\$expect);
64     $pat = "'$pat'" unless $pat =~ /^[:']/;
65     $pat =~ s/(\$\{\w+\})/$1/eeg;
66     $pat =~ s/\\n/\n/g;
67     $subject =~ s/(\$\{\w+\})/$1/eeg;
68     $subject =~ s/\\n/\n/g;
69     $expect =~ s/(\$\{\w+\})/$1/eeg;
70     $expect =~ s/\\n/\n/g;
71     $expect = $repl = '-' if $skip_amp and $input =~ /\$[&\`\']/;
72     $skip = ($skip_amp ? ($result =~ s/B//i) : ($result =~ s/B//));
73     $reason = 'skipping $&' if $reason eq  '' && $skip_amp;
74     $result =~ s/B//i unless $skip;
75
76     for $study ('', 'study $subject') {
77         $c = $iters;
78         if ($repl eq 'pos') {
79             $code= <<EOFCODE;
80                 $study;
81                 pos(\$subject)=0;
82                 \$match = ( \$subject =~ m${pat}g );
83                 \$got = pos(\$subject);
84 EOFCODE
85         }
86         elsif ($qr_embed) {
87             $code= <<EOFCODE;
88                 my \$RE = qr$pat;
89                 $study;
90                 \$match = (\$subject =~ /(?:)\$RE(?:)/) while \$c--;
91                 \$got = "$repl";
92 EOFCODE
93         }
94         else {
95             $code= <<EOFCODE;
96                 $study;
97                 \$match = (\$subject =~ $OP$pat$addg) while \$c--;
98                 \$got = "$repl";
99 EOFCODE
100         }
101         eval $code;
102         chomp( $err = $@ );
103         if ($result eq 'c') {
104             if ($err !~ m!^\Q$expect!) { print "not ok $. (compile) $input => `$err'\n"; next TEST }
105             last;  # no need to study a syntax error
106         }
107         elsif ( $skip ) {
108             print "ok $. # skipped", length($reason) ? " $reason" : '', "\n";
109             next TEST;
110         }
111         elsif ($@) {
112             print "not ok $. $input => error `$err'\n$code\n$@\n"; next TEST;
113         }
114         elsif ($result eq 'n') {
115             if ($match) { print "not ok $. ($study) $input => false positive\n"; next TEST }
116         }
117         else {
118             if (!$match || $got ne $expect) {
119                 print "not ok $. ($study) $input => `$got', match=$match\n$code\n";
120                 next TEST;
121             }
122         }
123     }
124     print "ok $.\n";
125 }
126
127 close(TESTS);
128
129 sub infty_subst                             # Special-case substitution
130 {                                           #  of $reg_infty and friends
131     my $tp = shift;
132     $$tp =~ s/,\$reg_infty_m}/,$reg_infty_m}/o;
133     $$tp =~ s/,\$reg_infty_p}/,$reg_infty_p}/o;
134     $$tp =~ s/,\$reg_infty}/,$reg_infty}/o;
135 }