Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / perl5 / t / op / regexp.t
1 #!./perl
2
3 # XXX known to leak scalars
4 $ENV{PERL_DESTRUCT_LEVEL} = 0 unless $ENV{PERL_DESTRUCT_LEVEL} > 3;
5
6 # The tests are in a separate file 't/op/re_tests'.
7 # Each line in that file is a separate test.
8 # There are five columns, separated by tabs.
9 #
10 # Column 1 contains the pattern, optionally enclosed in C<''>.
11 # Modifiers can be put after the closing C<'>.
12 #
13 # Column 2 contains the string to be matched.
14 #
15 # Column 3 contains the expected result:
16 #       y       expect a match
17 #       n       expect no match
18 #       c       expect an error
19 #
20 # Columns 4 and 5 are used only if column 3 contains C<y> or C<c>.
21 #
22 # Column 4 contains a string, usually C<$&>.
23 #
24 # Column 5 contains the expected result of double-quote
25 # interpolating that string after the match, or start of error message.
26 #
27 # \n in the tests are interpolated, as are variables of the form ${\w+}.
28 #
29 # If you want to add a regular expression test that can't be expressed
30 # in this format, don't add it here: put it in op/pat.t instead.
31
32 BEGIN {
33     chdir 't' if -d 't';
34     @INC = '../lib' if -d '../lib';
35 }
36
37 $iters = shift || 1;            # Poor man performance suite, 10000 is OK.
38
39 open(TESTS,'op/re_tests') || open(TESTS,'t/op/re_tests') ||
40         die "Can't open re_tests";
41
42 while (<TESTS>) { }
43 $numtests = $.;
44 seek(TESTS,0,0);
45 $. = 0;
46
47 $bang = sprintf "\\%03o", ord "!"; # \41 would not be portable.
48
49 $| = 1;
50 print "1..$numtests\n# $iters iterations\n";
51 TEST:
52 while (<TESTS>) {
53     chomp;
54     s/\\n/\n/g;
55     ($pat, $subject, $result, $repl, $expect) = split(/\t/,$_);
56     $input = join(':',$pat,$subject,$result,$repl,$expect);
57     infty_subst(\$pat);
58     infty_subst(\$expect);
59     $pat = "'$pat'" unless $pat =~ /^[:']/;
60     $pat =~ s/\\n/\n/g;
61     $pat =~ s/(\$\{\w+\})/$1/eeg;
62     $subject =~ s/\\n/\n/g;
63     $expect =~ s/\\n/\n/g;
64     $expect = $repl = '-' if $skip_amp and $input =~ /\$[&\`\']/;
65     for $study ("", "study \$subject") {
66         $c = $iters;
67         eval "$study; \$match = (\$subject =~ m$pat) while \$c--; \$got = \"$repl\";";
68         chomp( $err = $@ );
69         if ($result eq 'c') {
70             if ($err !~ m!^\Q$expect!) { print "not ok $. (compile) $input => `$err'\n"; next TEST }
71             last;  # no need to study a syntax error
72         }
73         elsif ($@) {
74             print "not ok $. $input => error `$err'\n"; next TEST;
75         }
76         elsif ($result eq 'n') {
77             if ($match) { print "not ok $. ($study) $input => false positive\n"; next TEST }
78         }
79         else {
80             if (!$match || $got ne $expect) {
81                 print "not ok $. ($study) $input => `$got', match=$match\n";
82                 next TEST;
83             }
84         }
85     }
86     print "ok $.\n";
87 }
88
89 close(TESTS);
90
91 sub infty_subst                             # Special-case substitution
92 {                                           #  of $reg_infty and friends
93     my $tp = shift;
94     $$tp =~ s/,\$reg_infty_m}/,$reg_infty_m}/o;
95     $$tp =~ s/,\$reg_infty_p}/,$reg_infty_p}/o;
96     $$tp =~ s/,\$reg_infty}/,$reg_infty}/o;
97 }