3 # Tests that have to do with checking whether characters have (or not have)
4 # certain Unicode properties; belong (or not belong) to blocks, scripts, etc.
14 skip_all_if_miniperl("no dynamic loading on miniperl, no File::Spec (used by charnames)");
20 # This is the data to test.
22 # This is a hash; keys are the property to test.
23 # Values are arrays containing characters to test. The characters can
24 # have the following formats:
25 # '\N{CHARACTER NAME}' - Use character with that name
26 # '\x{1234}' - Use character with that hex escape
27 # '0x1234' - Use chr() to get that character
28 # "a" - Character to use
30 # If a character entry starts with ! the character does not belong to the class
32 # If the class is just single letter, we use both \pL and \p{L}
35 use charnames ':full';
45 'Lowercase Letter' => ["h", "!H"],
47 Common => ["!i", "3"],
48 Inherited => ["!j", '\x{300}'],
50 InBasicLatin => ['\N{LATIN CAPITAL LETTER A}'],
51 InLatin1Supplement => ['\N{LATIN CAPITAL LETTER A WITH GRAVE}'],
52 InLatinExtendedA => ['\N{LATIN CAPITAL LETTER A WITH MACRON}'],
53 InLatinExtendedB => ['\N{LATIN SMALL LETTER B WITH STROKE}'],
54 InKatakana => ['\N{KATAKANA LETTER SMALL A}'],
55 IsLatin => ["0x100", "0x212b"],
56 IsHebrew => ["0x5d0", "0xfb4f"],
57 IsGreek => ["0x37a", "0x386", "!0x387", "0x388",
58 "0x38a", "!0x38b", "0x38c"],
59 HangulSyllables => ['\x{AC00}'],
60 'Script=Latin' => ['\x{0100}'],
61 'Block=LatinExtendedA' => ['\x{0100}'],
62 'Category=UppercaseLetter' => ['\x{0100}'],
65 # It's ok to repeat class names.
68 ['!\N{U+7f}', '\N{U+80}', '\N{U+ff}', '!\x{100}'],
70 ['!\N{U+7f}', '!\N{U+80}', '!\N{U+ff}', '\x{100}'],
73 # Properties are case-insensitive, and may have whitespace,
74 # dashes and underscores.
76 'in-latin1_SUPPLEMENT' => ['\N{U+80}',
77 '\N{LATIN SMALL LETTER Y WITH DIAERESIS}'],
78 ' ^ In Latin 1 Supplement '
79 => ['!\N{U+80}', '\N{COFFIN}'],
80 'latin-1 supplement' => ['\N{U+80}', "0xDF"],
84 my @USER_DEFINED_PROPERTIES = (
86 # User defined properties
88 InKana1 => ['\x{3040}', '!\x{303F}'],
89 InKana2 => ['\x{3040}', '!\x{303F}'],
90 InKana3 => ['\x{3041}', '!\x{3040}'],
91 InNotKana => ['\x{3040}', '!\x{3041}'],
92 InConsonant => ['d', '!e'],
93 IsSyriac1 => ['\x{0712}', '!\x{072F}'],
94 IsSyriac1KanaMark => ['\x{309A}', '!\x{3090}'],
95 IsSyriac1KanaMark => ['\x{0730}', '!\x{0712}'],
96 '# User-defined character properties may lack \n at the end',
97 InGreekSmall => ['\N{GREEK SMALL LETTER PI}',
98 '\N{GREEK SMALL LETTER FINAL SIGMA}'],
99 InGreekCapital => ['\N{GREEK CAPITAL LETTER PI}', '!\x{03A2}'],
101 ASCII_Hex_Digit => ['!-', 'A'],
102 IsAsciiHexAndDash => ['-', 'A'],
105 my @USER_CASELESS_PROPERTIES = (
107 # User defined properties which differ depending on /i. Second entry is
108 # false regularly, true under /i
110 'IsMyUpper' => ["M", "!m" ],
115 # From the short properties we populate POSIX-like classes.
117 my %SHORT_PROPERTIES = (
118 'Ll' => ['m', '\N{CYRILLIC SMALL LETTER A}'],
119 'Lu' => ['M', '\N{GREEK CAPITAL LETTER ALPHA}'],
120 'Lo' => ['\N{HIRAGANA LETTER SMALL A}'],
121 # is also in other alphabetic
122 'Mn' => ['\N{HEBREW POINT RAFE}'],
123 'Nd' => ["0", '\N{ARABIC-INDIC DIGIT ZERO}'],
133 my @ILLEGAL_PROPERTIES =
134 qw[q qrst f foo isfoo infoo ISfoo INfoo Is::foo In::foo];
138 while (my ($class, $chars) = each %SHORT_PROPERTIES) {
139 push @{$d {IsAlpha}} => map {$class =~ /^[LM]/ ? $_ : "!$_"} @$chars;
140 push @{$d {IsAlnum}} => map {$class =~ /^[LMN]./ ? $_ : "!$_"} @$chars;
141 push @{$d {IsASCII}} => map {length ($_) == 1 || $_ eq '\x{00}'
142 ? $_ : "!$_"} @$chars;
143 push @{$d {IsCntrl}} => map {$class =~ /^C/ ? $_ : "!$_"} @$chars;
144 push @{$d {IsBlank}} => map {$class =~ /^Z[lps]/ ? $_ : "!$_"} @$chars;
145 push @{$d {IsDigit}} => map {$class =~ /^Nd$/ ? $_ : "!$_"} @$chars;
146 push @{$d {IsGraph}} => map {$class =~ /^([LMNPS]|Co)/
147 ? $_ : "!$_"} @$chars;
148 push @{$d {IsPrint}} => map {$class =~ /^([LMNPS]|Co|Zs)/
149 ? $_ : "!$_"} @$chars;
150 push @{$d {IsLower}} => map {$class =~ /^Ll$/ ? $_ : "!$_"} @$chars;
151 push @{$d {IsUpper}} => map {$class =~ /^L[ut]/ ? $_ : "!$_"} @$chars;
152 push @{$d {IsPunct}} => map {$class =~ /^P/ ? $_ : "!$_"} @$chars;
153 push @{$d {IsWord}} => map {$class =~ /^[LMN]/ || $_ eq "_"
154 ? $_ : "!$_"} @$chars;
155 push @{$d {IsSpace}} => map {$class =~ /^Z/ ||
156 length ($_) == 1 && utf8::native_to_unicode(ord ($_)) >= 0x09
157 && utf8::native_to_unicode(ord ($_)) <= 0x0D
158 ? $_ : "!$_"} @$chars;
161 push @CLASSES => "# Short properties" => %SHORT_PROPERTIES,
162 "# POSIX like properties" => %d,
163 "# User defined properties" => @USER_DEFINED_PROPERTIES;
167 # Calculate the number of tests.
170 for (my $i = 0; $i < @CLASSES; $i += 2) {
171 $i ++, redo if $CLASSES [$i] =~ /^\h*#\h*(.*)/;
172 $count += 2 * (length $CLASSES [$i] == 1 ? 4 : 2) * @{$CLASSES [$i + 1]};
174 $count += 4 * @ILLEGAL_PROPERTIES;
175 $count += 4 * grep {length $_ == 1} @ILLEGAL_PROPERTIES;
176 $count += 8 * @USER_CASELESS_PROPERTIES;
178 plan(tests => $count);
180 run_tests unless caller ();
183 my ($char, $match, $nomatch, $caseless) = @_;
184 $caseless = "" unless defined $caseless;
185 $caseless = 'i' if $caseless;
189 if ($char =~ /^\\/) {
190 $str = eval qq ["$char"];
191 $name = qq ["$char"];
193 elsif ($char =~ /^0x([0-9A-Fa-f]+)$/) {
195 $name = "chr ($char)";
199 $name = qq ["$char"];
203 my $pat = "qr/$match/$caseless";
204 my $match_pat = eval $pat;
205 is($@, '', "$pat compiled correctly to a regexp: $@");
206 like($str, $match_pat, "$name correctly matched");
209 $pat = "qr/$nomatch/$caseless";
210 my $nomatch_pat = eval $pat;
211 is($@, '', "$pat compiled correctly to a regexp: $@");
212 unlike($str, $nomatch_pat, "$name correctly did not match");
218 my $class = shift @CLASSES;
219 if ($class =~ /^\h*#\h*(.*)/) {
223 last unless @CLASSES;
224 my $chars = shift @CLASSES;
225 my @in = grep {!/^!./} @$chars;
226 my @out = map {s/^!(?=.)//; $_} grep { /^!./} @$chars;
227 my $in_pat = eval qq ['\\p{$class}'];
228 my $out_pat = eval qq ['\\P{$class}'];
230 match $_, $in_pat, $out_pat for @in;
231 match $_, $out_pat, $in_pat for @out;
233 if (1 == length $class) { # Repeat without braces if name length 1
234 my $in_pat = eval qq ['\\p$class'];
235 my $out_pat = eval qq ['\\P$class'];
237 match $_, $in_pat, $out_pat for @in;
238 match $_, $out_pat, $in_pat for @out;
243 my $pat = qr /^Can't find Unicode property definition/;
244 print "# Illegal properties\n";
245 foreach my $p (@ILLEGAL_PROPERTIES) {
247 my $r = eval "'a' =~ /\\p{$p}/; 1";
248 is($r, undef, "Unknown Unicode property \\p{$p}");
249 like($@, $pat, "Unknown Unicode property \\p{$p}");
251 my $s = eval "'a' =~ /\\P{$p}/; 1";
252 is($s, undef, "Unknown Unicode property \\p{$p}");
253 like($@, $pat, "Unknown Unicode property \\p{$p}");
254 if (length $p == 1) {
256 my $r = eval "'a' =~ /\\p$p/; 1";
257 is($r, undef, "Unknown Unicode property \\p$p");
258 like($@, $pat, "Unknown Unicode property \\p$p");
260 my $s = eval "'a' =~ /\\P$p/; 1";
261 is($r, undef, "Unknown Unicode property \\P$p");
262 like($@, $pat, "Unknown Unicode property \\P$p");
266 print "# User-defined properties with /i differences\n";
267 foreach my $class (shift @USER_CASELESS_PROPERTIES) {
268 my $chars_ref = shift @USER_CASELESS_PROPERTIES;
269 my @in = grep {!/^!./} @$chars_ref;
270 my @out = map {s/^!(?=.)//; $_} grep { /^!./} @$chars_ref;
271 my $in_pat = eval qq ['\\p{$class}'];
272 my $out_pat = eval qq ['\\P{$class}'];
274 # Verify works as regularly for not /i
275 match $_, $in_pat, $out_pat for @in;
276 match $_, $out_pat, $in_pat for @out;
278 # Verify that adding /i doesn't change the in set.
279 match $_, $in_pat, $out_pat, 'i' for @in;
281 # Verify that adding /i does change the out set to match.
282 match $_, $in_pat, $out_pat, 'i' for @out;
288 # User defined properties
307 sub InNotKana {<<'--'}
315 my $return = "+utf8::Lowercase\n&utf8::ASCII\n";
316 $return .= sprintf("-%X\n", ord "a");
317 $return .= sprintf("-%X\n", ord "e");
318 $return .= sprintf("-%X\n", ord "i");
319 $return .= sprintf("-%X\n", ord "o");
320 $return .= sprintf("-%X\n", ord "u");
324 sub IsSyriac1 {<<'--'}
329 sub InGreekSmall {return "03B1\t03C9"}
330 sub InGreekCapital {return "0391\t03A9\n-03A2"}
332 sub IsAsciiHexAndDash {<<'--'}
333 +utf8::ASCII_Hex_Digit
338 my $caseless = shift;
346 # Verify that can use user-defined properties inside another one
347 sub IsSyriac1KanaMark {<<'--'}
353 # fake user-defined properties; these subs shouldn't be called, because
354 # their names don't start with In or Is