This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Replaced 'unlink' with 'unlink_all' in t/op/magic.t
[perl5.git] / t / re / reg_posixcc.t
CommitLineData
da7fcca4
YO
1#!perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
0214bff6 6 require './test.pl';
da7fcca4
YO
7}
8
9use strict;
10use warnings;
0214bff6
RGS
11plan "no_plan";
12
da7fcca4
YO
13my @pats=(
14 "\\w",
15 "\\W",
16 "\\s",
17 "\\S",
18 "\\d",
19 "\\D",
20 "[:alnum:]",
21 "[:^alnum:]",
22 "[:alpha:]",
23 "[:^alpha:]",
24 "[:ascii:]",
25 "[:^ascii:]",
26 "[:cntrl:]",
27 "[:^cntrl:]",
28 "[:graph:]",
29 "[:^graph:]",
30 "[:lower:]",
31 "[:^lower:]",
32 "[:print:]",
33 "[:^print:]",
34 "[:punct:]",
35 "[:^punct:]",
36 "[:upper:]",
37 "[:^upper:]",
38 "[:xdigit:]",
39 "[:^xdigit:]",
40 "[:space:]",
41 "[:^space:]",
42 "[:blank:]",
43 "[:^blank:]" );
dba1316b 44
da7fcca4
YO
45sub rangify {
46 my $ary= shift;
47 my $fmt= shift || '%d';
48 my $sep= shift || ' ';
49 my $rng= shift || '..';
50
51
52 my $first= $ary->[0];
53 my $last= $ary->[0];
54 my $ret= sprintf $fmt, $first;
55 for my $idx (1..$#$ary) {
56 if ( $ary->[$idx] != $last + 1) {
57 if ($last!=$first) {
58 $ret.=sprintf "%s$fmt",$rng, $last;
59 }
60 $first= $last= $ary->[$idx];
61 $ret.=sprintf "%s$fmt",$sep,$first;
62 } else {
63 $last= $ary->[$idx];
64 }
65 }
66 if ( $last != $first) {
67 $ret.=sprintf "%s$fmt",$rng, $last;
68 }
69 return $ret;
70}
71
9b7c43ba
KW
72# The bug is only fixed for /u
73use feature 'unicode_strings';
74
da7fcca4
YO
75my $description = "";
76while (@pats) {
77 my ($yes,$no)= splice @pats,0,2;
78
79 my %err_by_type;
80 my %singles;
dba1316b 81 my %complements;
da7fcca4
YO
82 foreach my $b (0..255) {
83 my %got;
9b7c43ba 84 my $display_b = sprintf("\\x%02X", $b);
da7fcca4
YO
85 for my $type ('unicode','not-unicode') {
86 my $str=chr($b).chr($b);
87 if ($type eq 'unicode') {
88 $str.=chr(256);
89 chop $str;
90 }
dba1316b 91 if ($str=~/[$yes][$no]/){
9b7c43ba
KW
92 unlike($str,qr/[$yes][$no]/,
93 "chr($display_b) X 2 =~/[$yes][$no]/ should not match under $type");
da7fcca4
YO
94 push @{$err_by_type{$type}},$b;
95 }
96 $got{"[$yes]"}{$type} = $str=~/[$yes]/ ? 1 : 0;
97 $got{"[$no]"}{$type} = $str=~/[$no]/ ? 1 : 0;
98 $got{"[^$yes]"}{$type} = $str=~/[^$yes]/ ? 1 : 0;
99 $got{"[^$no]"}{$type} = $str=~/[^$no]/ ? 1 : 0;
100 }
101 foreach my $which ("[$yes]","[$no]","[^$yes]","[^$no]") {
dba1316b 102 if ($got{$which}{'unicode'} != $got{$which}{'not-unicode'}){
9b7c43ba
KW
103 is($got{$which}{'unicode'},$got{$which}{'not-unicode'},
104 "chr($display_b) X 2=~ /$which/ should have the same results regardless of internal string encoding");
da7fcca4
YO
105 push @{$singles{$which}},$b;
106 }
107 }
dba1316b
YO
108 foreach my $which ($yes,$no) {
109 foreach my $strtype ('unicode','not-unicode') {
110 if ($got{"[$which]"}{$strtype} == $got{"[^$which]"}{$strtype}) {
9b7c43ba
KW
111 isnt($got{"[$which]"}{$strtype},$got{"[^$which]"}{$strtype},
112 "chr($display_b) X 2 =~ /[$which]/ should not have the same result as chr($display_b)=~/[^$which]/");
dba1316b
YO
113 push @{$complements{$which}{$strtype}},$b;
114 }
115 }
116 }
da7fcca4
YO
117 }
118
119
dba1316b 120 if (%err_by_type || %singles || %complements) {
da7fcca4
YO
121 $description||=" Error:\n";
122 $description .= "/[$yes][$no]/\n";
123 if (%err_by_type) {
dba1316b 124 foreach my $type (sort keys %err_by_type) {
da7fcca4
YO
125 $description .= "\tmatches $type codepoints:\t";
126 $description .= rangify($err_by_type{$type});
127 $description .= "\n";
128 }
129 $description .= "\n";
130 }
131 if (%singles) {
132 $description .= "Unicode/Nonunicode mismatches:\n";
dba1316b 133 foreach my $type (sort keys %singles) {
da7fcca4
YO
134 $description .= "\t$type:\t";
135 $description .= rangify($singles{$type});
136 $description .= "\n";
137 }
138 $description .= "\n";
139 }
dba1316b
YO
140 if (%complements) {
141 foreach my $class (sort keys %complements) {
142 foreach my $strtype (sort keys %{$complements{$class}}) {
143 $description .= "\t$class has complement failures under $strtype for:\t";
144 $description .= rangify($complements{$class}{$strtype});
145 $description .= "\n";
146 }
147 }
148 }
da7fcca4 149 }
da7fcca4 150}
da7fcca4 151__DATA__