Lots of consting
[p5sagit/p5-mst-13.2.git] / t / op / regexp.t
CommitLineData
378cc40b 1#!./perl
2
ad4f75a6 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
cf93c79d 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
ad4f75a6 18#
1b1626e4 19# Columns 4 and 5 are used only if column 3 contains C<y> or C<c>.
ad4f75a6 20#
21# Column 4 contains a string, usually C<$&>.
22#
23# Column 5 contains the expected result of double-quote
c277df42 24# interpolating that string after the match, or start of error message.
25#
ee595aa6 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#
9d116dd7 29# \n in the tests are interpolated, as are variables of the form ${\w+}.
83e898de 30#
8d37f932 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.
c277df42 33
e4d48cc9 34BEGIN {
35 chdir 't' if -d 't';
20822f61 36 @INC = '../lib';
e4d48cc9 37}
38
c277df42 39$iters = shift || 1; # Poor man performance suite, 10000 is OK.
ad4f75a6 40
95e8664e 41open(TESTS,'op/re_tests') || open(TESTS,'t/op/re_tests') || open(TESTS,':op:re_tests') ||
8d37f932 42 die "Can't open re_tests";
cfa4f241 43
378cc40b 44while (<TESTS>) { }
45$numtests = $.;
cfa4f241 46seek(TESTS,0,0);
47$. = 0;
378cc40b 48
9d116dd7 49$bang = sprintf "\\%03o", ord "!"; # \41 would not be portable.
b8c5462f 50$ffff = chr(0xff) x 2;
51$nulnul = "\0" x 2;
7fba1cd6 52$OP = $qr ? 'qr' : 'm';
9d116dd7 53
1462b684 54$| = 1;
c277df42 55print "1..$numtests\n# $iters iterations\n";
cfa4f241 56TEST:
378cc40b 57while (<TESTS>) {
b85d18e9 58 chomp;
59 s/\\n/\n/g;
ee595aa6 60 ($pat, $subject, $result, $repl, $expect, $reason) = split(/\t/,$_,6);
378cc40b 61 $input = join(':',$pat,$subject,$result,$repl,$expect);
83e898de 62 infty_subst(\$pat);
63 infty_subst(\$expect);
1b1626e4 64 $pat = "'$pat'" unless $pat =~ /^[:']/;
9d116dd7 65 $pat =~ s/(\$\{\w+\})/$1/eeg;
b8c5462f 66 $pat =~ s/\\n/\n/g;
67 $subject =~ s/(\$\{\w+\})/$1/eeg;
c277df42 68 $subject =~ s/\\n/\n/g;
b8c5462f 69 $expect =~ s/(\$\{\w+\})/$1/eeg;
c277df42 70 $expect =~ s/\\n/\n/g;
71 $expect = $repl = '-' if $skip_amp and $input =~ /\$[&\`\']/;
cf93c79d 72 $skip = ($skip_amp ? ($result =~ s/B//i) : ($result =~ s/B//));
906e884f 73 $reason = 'skipping $&' if $reason eq '' && $skip_amp;
cf93c79d 74 $result =~ s/B//i unless $skip;
75 for $study ('', 'study \$subject') {
c277df42 76 $c = $iters;
7fba1cd6 77 eval "$study; \$match = (\$subject =~ $OP$pat) while \$c--; \$got = \"$repl\";";
c277df42 78 chomp( $err = $@ );
cfa4f241 79 if ($result eq 'c') {
c277df42 80 if ($err !~ m!^\Q$expect!) { print "not ok $. (compile) $input => `$err'\n"; next TEST }
cfa4f241 81 last; # no need to study a syntax error
82 }
cf93c79d 83 elsif ( $skip ) {
ee595aa6 84 print "ok $. # skipped", length($reason) ? " $reason" : '', "\n";
85 next TEST;
cf93c79d 86 }
c277df42 87 elsif ($@) {
88 print "not ok $. $input => error `$err'\n"; next TEST;
89 }
cfa4f241 90 elsif ($result eq 'n') {
c277df42 91 if ($match) { print "not ok $. ($study) $input => false positive\n"; next TEST }
378cc40b 92 }
93 else {
cfa4f241 94 if (!$match || $got ne $expect) {
c277df42 95 print "not ok $. ($study) $input => `$got', match=$match\n";
cfa4f241 96 next TEST;
97 }
378cc40b 98 }
99 }
cfa4f241 100 print "ok $.\n";
378cc40b 101}
cfa4f241 102
378cc40b 103close(TESTS);
83e898de 104
105sub infty_subst # Special-case substitution
106{ # of $reg_infty and friends
107 my $tp = shift;
108 $$tp =~ s/,\$reg_infty_m}/,$reg_infty_m}/o;
109 $$tp =~ s/,\$reg_infty_p}/,$reg_infty_p}/o;
110 $$tp =~ s/,\$reg_infty}/,$reg_infty}/o;
111}