4 print "1..0 # Skip: EBCDIC\n";
9 require Config; import Config;
10 if ($Config{'extensions'} !~ /\bStorable\b/) {
11 print "1..0 # Skip: Storable was not built; Unicode::UCD uses Storable\n";
20 use Unicode::UCD 'charinfo';
26 is(charinfo(0x110000), undef, "Verify charinfo() of non-unicode is undef");
28 $charinfo = charinfo(0); # Null is often problematic, so test it.
30 is($charinfo->{code}, '0000', '<control>');
31 is($charinfo->{name}, '<control>');
32 is($charinfo->{category}, 'Cc');
33 is($charinfo->{combining}, '0');
34 is($charinfo->{bidi}, 'BN');
35 is($charinfo->{decomposition}, '');
36 is($charinfo->{decimal}, '');
37 is($charinfo->{digit}, '');
38 is($charinfo->{numeric}, '');
39 is($charinfo->{mirrored}, 'N');
40 is($charinfo->{unicode10}, 'NULL');
41 is($charinfo->{comment}, '');
42 is($charinfo->{upper}, '');
43 is($charinfo->{lower}, '');
44 is($charinfo->{title}, '');
45 is($charinfo->{block}, 'Basic Latin');
46 is($charinfo->{script}, 'Common');
48 $charinfo = charinfo(0x41);
50 is($charinfo->{code}, '0041', 'LATIN CAPITAL LETTER A');
51 is($charinfo->{name}, 'LATIN CAPITAL LETTER A');
52 is($charinfo->{category}, 'Lu');
53 is($charinfo->{combining}, '0');
54 is($charinfo->{bidi}, 'L');
55 is($charinfo->{decomposition}, '');
56 is($charinfo->{decimal}, '');
57 is($charinfo->{digit}, '');
58 is($charinfo->{numeric}, '');
59 is($charinfo->{mirrored}, 'N');
60 is($charinfo->{unicode10}, '');
61 is($charinfo->{comment}, '');
62 is($charinfo->{upper}, '');
63 is($charinfo->{lower}, '0061');
64 is($charinfo->{title}, '');
65 is($charinfo->{block}, 'Basic Latin');
66 is($charinfo->{script}, 'Latin');
68 $charinfo = charinfo(0x100);
70 is($charinfo->{code}, '0100', 'LATIN CAPITAL LETTER A WITH MACRON');
71 is($charinfo->{name}, 'LATIN CAPITAL LETTER A WITH MACRON');
72 is($charinfo->{category}, 'Lu');
73 is($charinfo->{combining}, '0');
74 is($charinfo->{bidi}, 'L');
75 is($charinfo->{decomposition}, '0041 0304');
76 is($charinfo->{decimal}, '');
77 is($charinfo->{digit}, '');
78 is($charinfo->{numeric}, '');
79 is($charinfo->{mirrored}, 'N');
80 is($charinfo->{unicode10}, 'LATIN CAPITAL LETTER A MACRON');
81 is($charinfo->{comment}, '');
82 is($charinfo->{upper}, '');
83 is($charinfo->{lower}, '0101');
84 is($charinfo->{title}, '');
85 is($charinfo->{block}, 'Latin Extended-A');
86 is($charinfo->{script}, 'Latin');
88 # 0x0590 is in the Hebrew block but unused.
90 $charinfo = charinfo(0x590);
92 is($charinfo->{code}, undef, '0x0590 - unused Hebrew');
93 is($charinfo->{name}, undef);
94 is($charinfo->{category}, undef);
95 is($charinfo->{combining}, undef);
96 is($charinfo->{bidi}, undef);
97 is($charinfo->{decomposition}, undef);
98 is($charinfo->{decimal}, undef);
99 is($charinfo->{digit}, undef);
100 is($charinfo->{numeric}, undef);
101 is($charinfo->{mirrored}, undef);
102 is($charinfo->{unicode10}, undef);
103 is($charinfo->{comment}, undef);
104 is($charinfo->{upper}, undef);
105 is($charinfo->{lower}, undef);
106 is($charinfo->{title}, undef);
107 is($charinfo->{block}, undef);
108 is($charinfo->{script}, undef);
110 # 0x05d0 is in the Hebrew block and used.
112 $charinfo = charinfo(0x5d0);
114 is($charinfo->{code}, '05D0', '05D0 - used Hebrew');
115 is($charinfo->{name}, 'HEBREW LETTER ALEF');
116 is($charinfo->{category}, 'Lo');
117 is($charinfo->{combining}, '0');
118 is($charinfo->{bidi}, 'R');
119 is($charinfo->{decomposition}, '');
120 is($charinfo->{decimal}, '');
121 is($charinfo->{digit}, '');
122 is($charinfo->{numeric}, '');
123 is($charinfo->{mirrored}, 'N');
124 is($charinfo->{unicode10}, '');
125 is($charinfo->{comment}, '');
126 is($charinfo->{upper}, '');
127 is($charinfo->{lower}, '');
128 is($charinfo->{title}, '');
129 is($charinfo->{block}, 'Hebrew');
130 is($charinfo->{script}, 'Hebrew');
132 # An open syllable in Hangul.
134 $charinfo = charinfo(0xAC00);
136 is($charinfo->{code}, 'AC00', 'HANGUL SYLLABLE U+AC00');
137 is($charinfo->{name}, 'HANGUL SYLLABLE GA');
138 is($charinfo->{category}, 'Lo');
139 is($charinfo->{combining}, '0');
140 is($charinfo->{bidi}, 'L');
141 is($charinfo->{decomposition}, '1100 1161');
142 is($charinfo->{decimal}, '');
143 is($charinfo->{digit}, '');
144 is($charinfo->{numeric}, '');
145 is($charinfo->{mirrored}, 'N');
146 is($charinfo->{unicode10}, '');
147 is($charinfo->{comment}, '');
148 is($charinfo->{upper}, '');
149 is($charinfo->{lower}, '');
150 is($charinfo->{title}, '');
151 is($charinfo->{block}, 'Hangul Syllables');
152 is($charinfo->{script}, 'Hangul');
154 # A closed syllable in Hangul.
156 $charinfo = charinfo(0xAE00);
158 is($charinfo->{code}, 'AE00', 'HANGUL SYLLABLE U+AE00');
159 is($charinfo->{name}, 'HANGUL SYLLABLE GEUL');
160 is($charinfo->{category}, 'Lo');
161 is($charinfo->{combining}, '0');
162 is($charinfo->{bidi}, 'L');
163 is($charinfo->{decomposition}, "1100 1173 11AF");
164 is($charinfo->{decimal}, '');
165 is($charinfo->{digit}, '');
166 is($charinfo->{numeric}, '');
167 is($charinfo->{mirrored}, 'N');
168 is($charinfo->{unicode10}, '');
169 is($charinfo->{comment}, '');
170 is($charinfo->{upper}, '');
171 is($charinfo->{lower}, '');
172 is($charinfo->{title}, '');
173 is($charinfo->{block}, 'Hangul Syllables');
174 is($charinfo->{script}, 'Hangul');
176 $charinfo = charinfo(0x1D400);
178 is($charinfo->{code}, '1D400', 'MATHEMATICAL BOLD CAPITAL A');
179 is($charinfo->{name}, 'MATHEMATICAL BOLD CAPITAL A');
180 is($charinfo->{category}, 'Lu');
181 is($charinfo->{combining}, '0');
182 is($charinfo->{bidi}, 'L');
183 is($charinfo->{decomposition}, '<font> 0041');
184 is($charinfo->{decimal}, '');
185 is($charinfo->{digit}, '');
186 is($charinfo->{numeric}, '');
187 is($charinfo->{mirrored}, 'N');
188 is($charinfo->{unicode10}, '');
189 is($charinfo->{comment}, '');
190 is($charinfo->{upper}, '');
191 is($charinfo->{lower}, '');
192 is($charinfo->{title}, '');
193 is($charinfo->{block}, 'Mathematical Alphanumeric Symbols');
194 is($charinfo->{script}, 'Common');
196 $charinfo = charinfo(0x9FBA); #Bug 58428
198 is($charinfo->{code}, '9FBA', 'U+9FBA');
199 is($charinfo->{name}, 'CJK UNIFIED IDEOGRAPH-9FBA');
200 is($charinfo->{category}, 'Lo');
201 is($charinfo->{combining}, '0');
202 is($charinfo->{bidi}, 'L');
203 is($charinfo->{decomposition}, '');
204 is($charinfo->{decimal}, '');
205 is($charinfo->{digit}, '');
206 is($charinfo->{numeric}, '');
207 is($charinfo->{mirrored}, 'N');
208 is($charinfo->{unicode10}, '');
209 is($charinfo->{comment}, '');
210 is($charinfo->{upper}, '');
211 is($charinfo->{lower}, '');
212 is($charinfo->{title}, '');
213 is($charinfo->{block}, 'CJK Unified Ideographs');
214 is($charinfo->{script}, 'Han');
216 use Unicode::UCD qw(charblock charscript);
218 # 0x0590 is in the Hebrew block but unused.
220 is(charblock(0x590), 'Hebrew', '0x0590 - Hebrew unused charblock');
221 is(charscript(0x590), 'Unknown', '0x0590 - Hebrew unused charscript');
222 is(charblock(0x1FFFF), 'No_Block', '0x1FFFF - unused charblock');
224 $charinfo = charinfo(0xbe);
226 is($charinfo->{code}, '00BE', 'VULGAR FRACTION THREE QUARTERS');
227 is($charinfo->{name}, 'VULGAR FRACTION THREE QUARTERS');
228 is($charinfo->{category}, 'No');
229 is($charinfo->{combining}, '0');
230 is($charinfo->{bidi}, 'ON');
231 is($charinfo->{decomposition}, '<fraction> 0033 2044 0034');
232 is($charinfo->{decimal}, '');
233 is($charinfo->{digit}, '');
234 is($charinfo->{numeric}, '3/4');
235 is($charinfo->{mirrored}, 'N');
236 is($charinfo->{unicode10}, 'FRACTION THREE QUARTERS');
237 is($charinfo->{comment}, '');
238 is($charinfo->{upper}, '');
239 is($charinfo->{lower}, '');
240 is($charinfo->{title}, '');
241 is($charinfo->{block}, 'Latin-1 Supplement');
242 is($charinfo->{script}, 'Common');
244 # This is to test a case where both simple and full lowercases exist and
246 $charinfo = charinfo(0x130);
248 is($charinfo->{code}, '0130', 'LATIN CAPITAL LETTER I WITH DOT ABOVE');
249 is($charinfo->{name}, 'LATIN CAPITAL LETTER I WITH DOT ABOVE');
250 is($charinfo->{category}, 'Lu');
251 is($charinfo->{combining}, '0');
252 is($charinfo->{bidi}, 'L');
253 is($charinfo->{decomposition}, '0049 0307');
254 is($charinfo->{decimal}, '');
255 is($charinfo->{digit}, '');
256 is($charinfo->{numeric}, '');
257 is($charinfo->{mirrored}, 'N');
258 is($charinfo->{unicode10}, 'LATIN CAPITAL LETTER I DOT');
259 is($charinfo->{comment}, '');
260 is($charinfo->{upper}, '');
261 is($charinfo->{lower}, '0069');
262 is($charinfo->{title}, '');
263 is($charinfo->{block}, 'Latin Extended-A');
264 is($charinfo->{script}, 'Latin');
266 # This is to test a case where both simple and full uppercases exist and
268 $charinfo = charinfo(0x1F80);
270 is($charinfo->{code}, '1F80', 'GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI');
271 is($charinfo->{name}, 'GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI');
272 is($charinfo->{category}, 'Ll');
273 is($charinfo->{combining}, '0');
274 is($charinfo->{bidi}, 'L');
275 is($charinfo->{decomposition}, '1F00 0345');
276 is($charinfo->{decimal}, '');
277 is($charinfo->{digit}, '');
278 is($charinfo->{numeric}, '');
279 is($charinfo->{mirrored}, 'N');
280 is($charinfo->{unicode10}, '');
281 is($charinfo->{comment}, '');
282 is($charinfo->{upper}, '1F88');
283 is($charinfo->{lower}, '');
284 is($charinfo->{title}, '1F88');
285 is($charinfo->{block}, 'Greek Extended');
286 is($charinfo->{script}, 'Greek');
288 use Unicode::UCD qw(charblocks charscripts);
290 my $charblocks = charblocks();
292 ok(exists $charblocks->{Thai}, 'Thai charblock exists');
293 is($charblocks->{Thai}->[0]->[0], hex('0e00'));
294 ok(!exists $charblocks->{PigLatin}, 'PigLatin charblock does not exist');
296 my $charscripts = charscripts();
298 ok(exists $charscripts->{Armenian}, 'Armenian charscript exists');
299 is($charscripts->{Armenian}->[0]->[0], hex('0531'));
300 ok(!exists $charscripts->{PigLatin}, 'PigLatin charscript does not exist');
304 $charscript = charscript("12ab");
305 is($charscript, 'Ethiopic', 'Ethiopic charscript');
307 $charscript = charscript("0x12ab");
308 is($charscript, 'Ethiopic');
310 $charscript = charscript("U+12ab");
311 is($charscript, 'Ethiopic');
315 $ranges = charscript('Ogham');
316 is($ranges->[0]->[0], hex('1680'), 'Ogham charscript');
317 is($ranges->[0]->[1], hex('169C'));
319 use Unicode::UCD qw(charinrange);
321 $ranges = charscript('Cherokee');
322 ok(!charinrange($ranges, "139f"), 'Cherokee charscript');
323 ok( charinrange($ranges, "13a0"));
324 ok( charinrange($ranges, "13f4"));
325 ok(!charinrange($ranges, "13f5"));
327 use Unicode::UCD qw(general_categories);
329 my $gc = general_categories();
331 ok(exists $gc->{L}, 'has L');
332 is($gc->{L}, 'Letter', 'L is Letter');
333 is($gc->{Lu}, 'UppercaseLetter', 'Lu is UppercaseLetter');
335 use Unicode::UCD qw(bidi_types);
337 my $bt = bidi_types();
339 ok(exists $bt->{L}, 'has L');
340 is($bt->{L}, 'Left-to-Right', 'L is Left-to-Right');
341 is($bt->{AL}, 'Right-to-Left Arabic', 'AL is Right-to-Left Arabic');
343 # If this fails, then maybe one should look at the Unicode changes to see
344 # what else might need to be updated.
345 is(Unicode::UCD::UnicodeVersion, '6.1.0', 'UnicodeVersion');
347 use Unicode::UCD qw(compexcl);
349 ok(!compexcl(0x0100), 'compexcl');
350 ok(!compexcl(0xD801), 'compexcl of surrogate');
351 ok(!compexcl(0x110000), 'compexcl of non-Unicode code point');
352 ok( compexcl(0x0958));
354 use Unicode::UCD qw(casefold);
358 $casefold = casefold(0x41);
360 is($casefold->{code}, '0041', 'casefold 0x41 code');
361 is($casefold->{status}, 'C', 'casefold 0x41 status');
362 is($casefold->{mapping}, '0061', 'casefold 0x41 mapping');
363 is($casefold->{full}, '0061', 'casefold 0x41 full');
364 is($casefold->{simple}, '0061', 'casefold 0x41 simple');
365 is($casefold->{turkic}, "", 'casefold 0x41 turkic');
367 $casefold = casefold(0xdf);
369 is($casefold->{code}, '00DF', 'casefold 0xDF code');
370 is($casefold->{status}, 'F', 'casefold 0xDF status');
371 is($casefold->{mapping}, '0073 0073', 'casefold 0xDF mapping');
372 is($casefold->{full}, '0073 0073', 'casefold 0xDF full');
373 is($casefold->{simple}, "", 'casefold 0xDF simple');
374 is($casefold->{turkic}, "", 'casefold 0xDF turkic');
376 # Do different tests depending on if version < 3.2, or not.
377 my $v_unicode_version = pack "C*", split /\./, Unicode::UCD::UnicodeVersion();
378 if ($v_unicode_version lt v3.2.0) {
379 $casefold = casefold(0x130);
381 is($casefold->{code}, '0130', 'casefold 0x130 code');
382 is($casefold->{status}, 'I' , 'casefold 0x130 status');
383 is($casefold->{mapping}, '0069', 'casefold 0x130 mapping');
384 is($casefold->{full}, '0069', 'casefold 0x130 full');
385 is($casefold->{simple}, "0069", 'casefold 0x130 simple');
386 is($casefold->{turkic}, "0069", 'casefold 0x130 turkic');
388 $casefold = casefold(0x131);
390 is($casefold->{code}, '0131', 'casefold 0x131 code');
391 is($casefold->{status}, 'I' , 'casefold 0x131 status');
392 is($casefold->{mapping}, '0069', 'casefold 0x131 mapping');
393 is($casefold->{full}, '0069', 'casefold 0x131 full');
394 is($casefold->{simple}, "0069", 'casefold 0x131 simple');
395 is($casefold->{turkic}, "0069", 'casefold 0x131 turkic');
397 $casefold = casefold(0x49);
399 is($casefold->{code}, '0049', 'casefold 0x49 code');
400 is($casefold->{status}, 'C' , 'casefold 0x49 status');
401 is($casefold->{mapping}, '0069', 'casefold 0x49 mapping');
402 is($casefold->{full}, '0069', 'casefold 0x49 full');
403 is($casefold->{simple}, "0069", 'casefold 0x49 simple');
404 is($casefold->{turkic}, "0131", 'casefold 0x49 turkic');
406 $casefold = casefold(0x130);
408 is($casefold->{code}, '0130', 'casefold 0x130 code');
409 is($casefold->{status}, 'F' , 'casefold 0x130 status');
410 is($casefold->{mapping}, '0069 0307', 'casefold 0x130 mapping');
411 is($casefold->{full}, '0069 0307', 'casefold 0x130 full');
412 is($casefold->{simple}, "", 'casefold 0x130 simple');
413 is($casefold->{turkic}, "0069", 'casefold 0x130 turkic');
416 $casefold = casefold(0x1F88);
418 is($casefold->{code}, '1F88', 'casefold 0x1F88 code');
419 is($casefold->{status}, 'S' , 'casefold 0x1F88 status');
420 is($casefold->{mapping}, '1F80', 'casefold 0x1F88 mapping');
421 is($casefold->{full}, '1F00 03B9', 'casefold 0x1F88 full');
422 is($casefold->{simple}, '1F80', 'casefold 0x1F88 simple');
423 is($casefold->{turkic}, "", 'casefold 0x1F88 turkic');
427 use Unicode::UCD qw(casespec);
433 $casespec = casespec(0xdf);
435 ok($casespec->{code} eq '00DF' &&
436 $casespec->{lower} eq '00DF' &&
437 $casespec->{title} eq '0053 0073' &&
438 $casespec->{upper} eq '0053 0053' &&
439 !defined $casespec->{condition}, 'casespec 0xDF');
441 $casespec = casespec(0x307);
443 ok($casespec->{az}->{code} eq '0307' &&
444 !defined $casespec->{az}->{lower} &&
445 $casespec->{az}->{title} eq '0307' &&
446 $casespec->{az}->{upper} eq '0307' &&
447 $casespec->{az}->{condition} eq 'az After_I',
450 # perl #7305 UnicodeCD::compexcl is weird
452 for (1) {my $a=compexcl $_}
453 ok(1, 'compexcl read-only $_: perl #7305');
454 map {compexcl $_} %{{1=>2}};
455 ok(1, 'compexcl read-only hash: perl #7305');
457 is(Unicode::UCD::_getcode('123'), 123, "_getcode(123)");
458 is(Unicode::UCD::_getcode('0123'), 0x123, "_getcode(0123)");
459 is(Unicode::UCD::_getcode('0x123'), 0x123, "_getcode(0x123)");
460 is(Unicode::UCD::_getcode('0X123'), 0x123, "_getcode(0X123)");
461 is(Unicode::UCD::_getcode('U+123'), 0x123, "_getcode(U+123)");
462 is(Unicode::UCD::_getcode('u+123'), 0x123, "_getcode(u+123)");
463 is(Unicode::UCD::_getcode('U+1234'), 0x1234, "_getcode(U+1234)");
464 is(Unicode::UCD::_getcode('U+12345'), 0x12345, "_getcode(U+12345)");
465 is(Unicode::UCD::_getcode('123x'), undef, "_getcode(123x)");
466 is(Unicode::UCD::_getcode('x123'), undef, "_getcode(x123)");
467 is(Unicode::UCD::_getcode('0x123x'), undef, "_getcode(x123)");
468 is(Unicode::UCD::_getcode('U+123x'), undef, "_getcode(x123)");
471 my $r1 = charscript('Latin');
472 if (ok(defined $r1, "Found Latin script")) {
474 is($n1, 30, "number of ranges in Latin script (Unicode 6.1.0)");
475 shift @$r1 while @$r1;
476 my $r2 = charscript('Latin');
477 is(@$r2, $n1, "modifying results should not mess up internal caches");
482 is(charinfo(0xdeadbeef), undef, "[perl #23273] warnings in Unicode::UCD");
485 use Unicode::UCD qw(namedseq);
487 is(namedseq("KATAKANA LETTER AINU P"), "\x{31F7}\x{309A}", "namedseq");
488 is(namedseq("KATAKANA LETTER AINU Q"), undef);
489 is(namedseq(), undef);
490 is(namedseq(qw(foo bar)), undef);
491 my @ns = namedseq("KATAKANA LETTER AINU P");
496 is($ns{"KATAKANA LETTER AINU P"}, "\x{31F7}\x{309A}");
500 use Unicode::UCD qw(num);
501 use charnames ":full";
503 is(num("0"), 0, 'Verify num("0") == 0');
504 is(num("98765"), 98765, 'Verify num("98765") == 98765');
505 ok(! defined num("98765\N{FULLWIDTH DIGIT FOUR}"), 'Verify num("98765\N{FULLWIDTH DIGIT FOUR}") isnt defined');
506 is(num("\N{NEW TAI LUE DIGIT TWO}\N{NEW TAI LUE DIGIT ONE}"), 21, 'Verify num("\N{NEW TAI LUE DIGIT TWO}\N{NEW TAI LUE DIGIT ONE}") == 21');
507 ok(! defined num("\N{NEW TAI LUE DIGIT TWO}\N{NEW TAI LUE THAM DIGIT ONE}"), 'Verify num("\N{NEW TAI LUE DIGIT TWO}\N{NEW TAI LUE THAM DIGIT ONE}") isnt defined');
508 is(num("\N{CHAM DIGIT ZERO}\N{CHAM DIGIT THREE}"), 3, 'Verify num("\N{CHAM DIGIT ZERO}\N{CHAM DIGIT THREE}") == 3');
509 ok(! defined num("\N{CHAM DIGIT ZERO}\N{JAVANESE DIGIT NINE}"), 'Verify num("\N{CHAM DIGIT ZERO}\N{JAVANESE DIGIT NINE}") isnt defined');
510 is(num("\N{SUPERSCRIPT TWO}"), 2, 'Verify num("\N{SUPERSCRIPT TWO} == 2');
511 is(num("\N{ETHIOPIC NUMBER TEN THOUSAND}"), 10000, 'Verify num("\N{ETHIOPIC NUMBER TEN THOUSAND}") == 10000');
512 is(num("\N{NORTH INDIC FRACTION ONE HALF}"), .5, 'Verify num("\N{NORTH INDIC FRACTION ONE HALF}") == .5');
513 is(num("\N{U+12448}"), 9, 'Verify num("\N{U+12448}") == 9');
514 is(num("\N{U+5146}"), 1000000000000, 'Verify num("\N{U+5146}") == 1000000000000');
516 # Create a user-defined property
522 use Unicode::UCD qw(prop_aliases);
524 is(prop_aliases(undef), undef, "prop_aliases(undef) returns <undef>");
525 is(prop_aliases("unknown property"), undef,
526 "prop_aliases(<unknown property>) returns <undef>");
527 is(prop_aliases("InKana"), undef,
528 "prop_aliases(<user-defined property>) returns <undef>");
529 is(prop_aliases("Perl_Decomposition_Mapping"), undef, "prop_aliases('Perl_Decomposition_Mapping') returns <undef> since internal-Perl-only");
530 is(prop_aliases("Perl_Charnames"), undef,
531 "prop_aliases('Perl_Charnames') returns <undef> since internal-Perl-only");
532 is(prop_aliases("isgc"), undef,
533 "prop_aliases('isgc') returns <undef> since is not covered Perl extension");
534 is(prop_aliases("Is_Is_Any"), undef,
535 "prop_aliases('Is_Is_Any') returns <undef> since two is's");
537 require 'utf8_heavy.pl';
538 require "unicore/Heavy.pl";
540 # Keys are lists of properties. Values are defined if have been tested.
543 # To test for loose matching, add in the characters that are ignored there.
544 my $extra_chars = "-_ ";
546 # The one internal property we accept
547 $props{'Perl_Decimal_Digit'} = 1;
548 my @list = prop_aliases("perldecimaldigit");
550 [ "Perl_Decimal_Digit",
552 ], "prop_aliases('perldecimaldigit') returns Perl_Decimal_Digit as both short and full names");
554 # Get the official Unicode property name synonyms and test them.
557 skip "PropertyAliases.txt is not in this Unicode version", 1 if $v_unicode_version lt v3.2.0;
558 open my $props, "<", "../lib/unicore/PropertyAliases.txt"
559 or die "Can't open Unicode PropertyAliases.txt";
562 s/\s*#.*//; # Remove comments
563 next if /^\s* $/x; # Ignore empty and comment lines
566 my $count = 0; # 0th field in line is short name; 1th is long name
570 foreach my $alias (split /\s*;\s*/) { # Fields are separated by
572 # Add in the characters that are supposed to be ignored, to test loose
573 # matching, which the tested function does on all inputs.
574 my $mod_name = "$extra_chars$alias";
576 my $loose = &utf8::_loose_name(lc $alias);
578 # Indicate we have tested this.
581 my @all_names = prop_aliases($mod_name);
582 if (grep { $_ eq $loose } @Unicode::UCD::suppressed_properties) {
583 is(@all_names, 0, "prop_aliases('$mod_name') returns undef since $alias is not installed");
586 elsif (! @all_names) {
587 fail("prop_aliases('$mod_name')");
588 diag("'$alias' is unknown to prop_aliases()");
592 if ($count == 0) { # Is short name
594 @names_via_short = prop_aliases($mod_name);
596 # If the 0th test fails, no sense in continuing with the others
597 last unless is($names_via_short[0], $alias,
598 "prop_aliases: '$alias' is the short name for '$mod_name'");
599 $short_name = $alias;
601 elsif ($count == 1) { # Is full name
603 # Some properties have the same short and full name; no sense
604 # repeating the test if the same.
605 if ($alias ne $short_name) {
606 my @names_via_full = prop_aliases($mod_name);
607 is_deeply(\@names_via_full, \@names_via_short, "prop_aliases() returns the same list for both '$short_name' and '$mod_name'");
610 # Tests scalar context
611 is(prop_aliases($short_name), $alias,
612 "prop_aliases: '$alias' is the long name for '$short_name'");
614 else { # Is another alias
615 is_deeply(\@all_names, \@names_via_short, "prop_aliases() returns the same list for both '$short_name' and '$mod_name'");
616 ok((grep { $_ =~ /^$alias$/i } @all_names),
617 "prop_aliases: '$alias' is listed as an alias for '$mod_name'");
623 } # End of SKIP block
625 # Now test anything we can find that wasn't covered by the tests of the
626 # official properties. We have no way of knowing if mktables omitted a Perl
627 # extension or not, but we do the best we can from its generated lists
629 foreach my $alias (keys %utf8::loose_to_file_of) {
630 next if $alias =~ /=/;
631 my $lc_name = lc $alias;
632 my $loose = &utf8::_loose_name($lc_name);
633 next if exists $props{$loose}; # Skip if already tested
635 my $mod_name = "$extra_chars$alias"; # Tests loose matching
636 my @aliases = prop_aliases($mod_name);
637 my $found_it = grep { &utf8::_loose_name(lc $_) eq $lc_name } @aliases;
639 pass("prop_aliases: '$lc_name' is listed as an alias for '$mod_name'");
641 elsif ($lc_name =~ /l[_&]$/) {
643 # These two names are special in that they don't appear in the
644 # returned list because they are discouraged from use. Verify
645 # that they return the same list as a non-discouraged version.
646 my @LC = prop_aliases('Is_LC');
647 is_deeply(\@aliases, \@LC, "prop_aliases: '$lc_name' returns the same list as 'Is_LC'");
650 my $stripped = $lc_name =~ s/^is//;
652 # Could be that the input includes a prefix 'is', which is rarely
653 # returned as an alias, so having successfully stripped it off above,
656 $found_it = grep { &utf8::_loose_name(lc $_) eq $lc_name } @aliases;
659 # If that didn't work, it could be that it's a block, which is always
660 # returned with a leading 'In_' to avoid ambiguity. Try comparing
661 # with that stripped off.
663 $found_it = grep { &utf8::_loose_name(s/^In_(.*)/\L$1/r) eq $lc_name }
665 # Could check that is a real block, but tests for invmap will
666 # likely pickup any errors, since this will be tested there.
667 $lc_name = "in$lc_name" if $found_it; # Change for message below
669 my $message = "prop_aliases: '$lc_name' is listed as an alias for '$mod_name'";
670 ($found_it) ? pass($message) : fail($message);
675 foreach my $alias (keys %utf8::stricter_to_file_of) {
676 if ($alias =~ /=/) { # Only test one case where there is an equals
677 next if $done_equals;
680 my $lc_name = lc $alias;
681 my @list = prop_aliases($alias);
682 if ($alias =~ /^_/) {
683 is(@list, 0, "prop_aliases: '$lc_name' returns an empty list since it is internal_only");
685 elsif ($alias =~ /=/) {
686 is(@list, 0, "prop_aliases: '$lc_name' returns an empty list since is illegal property name");
689 ok((grep { lc $_ eq $lc_name } @list),
690 "prop_aliases: '$lc_name' is listed as an alias for '$alias'");
694 use Unicode::UCD qw(prop_value_aliases);
696 is(prop_value_aliases("unknown property", "unknown value"), undef,
697 "prop_value_aliases(<unknown property>, <unknown value>) returns <undef>");
698 is(prop_value_aliases(undef, undef), undef,
699 "prop_value_aliases(undef, undef) returns <undef>");
700 is((prop_value_aliases("na", "A")), "A", "test that prop_value_aliases returns its input for properties that don't have synonyms");
701 is(prop_value_aliases("isgc", "C"), undef, "prop_value_aliases('isgc', 'C') returns <undef> since is not covered Perl extension");
702 is(prop_value_aliases("gc", "isC"), undef, "prop_value_aliases('gc', 'isC') returns <undef> since is not covered Perl extension");
704 # We have no way of knowing if mktables omitted a Perl extension that it
705 # shouldn't have, but we can check if it omitted an official Unicode property
706 # name synonym. And for those, we can check if the short and full names are
709 my %pva_tested; # List of things already tested.
710 open my $propvalues, "<", "../lib/unicore/PropValueAliases.txt"
711 or die "Can't open Unicode PropValueAliases.txt";
712 while (<$propvalues>) {
713 s/\s*#.*//; # Remove comments
714 next if /^\s* $/x; # Ignore empty and comment lines
717 # Fix typo in official input file
718 s/CCC133/CCC132/g if $v_unicode_version eq v6.1.0;
720 my @fields = split /\s*;\s*/; # Fields are separated by semi-colons
721 my $prop = shift @fields; # 0th field is the property,
722 my $count = 0; # 0th field in line (after shifting off the property) is
723 # short name; 1th is long name
725 my @names_via_short; # Saves the values between iterations
727 # The property on the lhs of the = is always loosely matched. Add in
728 # characters that are ignored under loose matching to test that
729 my $mod_prop = "$extra_chars$prop";
731 if ($fields[0] eq 'n/a') { # See comments in input file, essentially
732 # means full name and short name are identical
733 $fields[0] = $fields[1];
735 elsif ($fields[0] ne $fields[1]
736 && &utf8::_loose_name(lc $fields[0])
737 eq &utf8::_loose_name(lc $fields[1])
738 && $fields[1] !~ /[[:upper:]]/)
740 # Also, there is a bug in the file in which "n/a" is omitted, and
741 # the two fields are identical except for case, and the full name
742 # is all lower case. Copy the "short" name unto the full one to
743 # give it some upper case.
745 $fields[1] = $fields[0];
748 # The ccc property in the file is special; has an extra numeric field
749 # (0th), which should go at the end, since we use the next two fields as
750 # the short and full names, respectively. See comments in input file.
751 splice (@fields, 0, 0, splice(@fields, 1, 2)) if $prop eq 'ccc';
753 my $loose_prop = &utf8::_loose_name(lc $prop);
754 my $suppressed = grep { $_ eq $loose_prop }
755 @Unicode::UCD::suppressed_properties;
756 foreach my $value (@fields) {
758 is(prop_value_aliases($prop, $value), undef, "prop_value_aliases('$prop', '$value') returns undef for suppressed property $prop");
761 elsif (grep { $_ eq ("$loose_prop=" . &utf8::_loose_name(lc $value)) } @Unicode::UCD::suppressed_properties) {
762 is(prop_value_aliases($prop, $value), undef, "prop_value_aliases('$prop', '$value') returns undef for suppressed property $prop=$value");
766 # Add in test for loose matching.
767 my $mod_value = "$extra_chars$value";
769 # If the value is a number, optionally negative, including a floating
770 # point or rational numer, it should be only strictly matched, so the
771 # loose matching should fail.
772 if ($value =~ / ^ -? \d+ (?: [\/.] \d+ )? $ /x) {
773 is(prop_value_aliases($mod_prop, $mod_value), undef, "prop_value_aliases('$mod_prop', '$mod_value') returns undef because '$mod_value' should be strictly matched");
775 # And reset so below tests just the strict matching.
781 @names_via_short = prop_value_aliases($mod_prop, $mod_value);
783 # If the 0th test fails, no sense in continuing with the others
784 last unless is($names_via_short[0], $value, "prop_value_aliases: In '$prop', '$value' is the short name for '$mod_value'");
785 $short_name = $value;
787 elsif ($count == 1) {
789 # Some properties have the same short and full name; no sense
790 # repeating the test if the same.
791 if ($value ne $short_name) {
793 prop_value_aliases($mod_prop, $mod_value);
794 is_deeply(\@names_via_full, \@names_via_short, "In '$prop', prop_value_aliases() returns the same list for both '$short_name' and '$mod_value'");
797 # Tests scalar context
798 is(prop_value_aliases($prop, $short_name), $value, "'$value' is the long name for prop_value_aliases('$prop', '$short_name')");
801 my @all_names = prop_value_aliases($mod_prop, $mod_value);
802 is_deeply(\@all_names, \@names_via_short, "In '$prop', prop_value_aliases() returns the same list for both '$short_name' and '$mod_value'");
803 ok((grep { &utf8::_loose_name(lc $_) eq &utf8::_loose_name(lc $value) } prop_value_aliases($prop, $short_name)), "'$value' is listed as an alias for prop_value_aliases('$prop', '$short_name')");
806 $pva_tested{&utf8::_loose_name(lc $prop) . "=" . &utf8::_loose_name(lc $value)} = 1;
811 # And test as best we can, the non-official pva's that mktables generates.
812 foreach my $hash (\%utf8::loose_to_file_of, \%utf8::stricter_to_file_of) {
813 foreach my $test (keys %$hash) {
814 next if exists $pva_tested{$test}; # Skip if already tested
816 my ($prop, $value) = split "=", $test;
817 next unless defined $value; # prop_value_aliases() requires an input
820 if ($hash == \%utf8::loose_to_file_of) {
822 # Add extra characters to test loose-match rhs value
823 $mod_value = "$extra_chars$value";
825 else { # Here value is strictly matched.
827 # Extra elements are added by mktables to this hash so that
828 # something like "age=6.0" has a synonym of "age=6". It's not
829 # clear to me (khw) if we should be encouraging those synonyms, so
830 # don't test for them.
831 next if $value !~ /\D/ && exists $hash->{"$prop=$value.0"};
833 # Verify that loose matching fails when only strict is called for.
834 next unless is(prop_value_aliases($prop, "$extra_chars$value"), undef,
835 "prop_value_aliases('$prop', '$extra_chars$value') returns undef since '$value' should be strictly matched"),
837 # Strict matching does allow for underscores between digits. Test
840 while ($mod_value =~ s/(\d)(\d)/$1_$2/g) {}
843 # The lhs property is always loosely matched, so add in extra
844 # characters to test that.
845 my $mod_prop = "$extra_chars$prop";
847 if ($prop eq 'gc' && $value =~ /l[_&]$/) {
848 # These two names are special in that they don't appear in the
849 # returned list because they are discouraged from use. Verify
850 # that they return the same list as a non-discouraged version.
851 my @LC = prop_value_aliases('gc', 'lc');
852 my @l_ = prop_value_aliases($mod_prop, $mod_value);
853 is_deeply(\@l_, \@LC, "prop_value_aliases('$mod_prop', '$mod_value) returns the same list as prop_value_aliases('gc', 'lc')");
856 ok((grep { &utf8::_loose_name(lc $_) eq &utf8::_loose_name(lc $value) }
857 prop_value_aliases($mod_prop, $mod_value)),
858 "'$value' is listed as an alias for prop_value_aliases('$mod_prop', '$mod_value')");
865 no warnings 'once'; # We use some values once from 'required' modules.
867 use Unicode::UCD qw(prop_invlist prop_invmap MAX_CP);
869 # There were some problems with caching interfering with prop_invlist() vs
870 # prop_invmap() on binary properties, and also between the 3 properties where
871 # Perl used the same 'To' name as another property (see utf8_heavy.pl).
872 # So, before testing all of prop_invlist(),
873 # 1) call prop_invmap() to try both orders of these name issues. This uses
874 # up two of the 3 properties; the third will be left so that invlist()
875 # on it gets called before invmap()
876 # 2) call prop_invmap() on a generic binary property, ahead of invlist().
877 # This should test that the caching works in both directions.
879 # These properties are not stable between Unicode versions, but the first few
880 # elements are; just look at the first element to see if are getting the
881 # distinction right. The general inversion map testing below will test the
884 my ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($prop);
885 is($format, 'al', "prop_invmap() format of '$prop' is 'al'");
886 is($missing, '0', "prop_invmap() missing of '$prop' is '0'");
887 is($invlist_ref->[1], 0x61, "prop_invmap('$prop') list[1] is 0x61");
888 is($invmap_ref->[1], 0x41, "prop_invmap('$prop') map[1] is 0x41");
891 ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($prop);
892 is($format, 's', "prop_invmap() format of '$prop' is 's");
893 is($missing, 'N', "prop_invmap() missing of '$prop' is 'N'");
894 is($invlist_ref->[1], 0x41, "prop_invmap('$prop') list[1] is 0x41");
895 is($invmap_ref->[1], 'Y', "prop_invmap('$prop') map[1] is 'Y'");
898 ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($prop);
899 is($format, 's', "prop_invmap() format of '$prop' is 's'");
900 is($missing, 'N', "prop_invmap() missing of '$prop' is 'N'");
901 is($invlist_ref->[1], 0x61, "prop_invmap('$prop') list[1] is 0x61");
902 is($invmap_ref->[1], 'Y', "prop_invmap('$prop') map[1] is 'Y'");
905 ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($prop);
906 is($format, 'al', "prop_invmap() format of '$prop' is 'al'");
907 is($missing, '0', "prop_invmap() missing of '$prop' is '0'");
908 is($invlist_ref->[1], 0x41, "prop_invmap('$prop') list[1] is 0x41");
909 is($invmap_ref->[1], 0x61, "prop_invmap('$prop') map[1] is 0x61");
911 # This property is stable and small, so can test all of it
912 $prop = "ASCII_Hex_Digit";
913 ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($prop);
914 is($format, 's', "prop_invmap() format of '$prop' is 's'");
915 is($missing, 'N', "prop_invmap() missing of '$prop' is 'N'");
916 is_deeply($invlist_ref, [ 0x0000, 0x0030, 0x003A, 0x0041,
917 0x0047, 0x0061, 0x0067, 0x110000 ],
918 "prop_invmap('$prop') code point list is correct");
919 is_deeply($invmap_ref, [ 'N', 'Y', 'N', 'Y', 'N', 'Y', 'N', 'N' ] ,
920 "prop_invmap('$prop') map list is correct");
922 is(prop_invlist("Unknown property"), undef, "prop_invlist(<Unknown property>) returns undef");
923 is(prop_invlist(undef), undef, "prop_invlist(undef) returns undef");
924 is(prop_invlist("Any"), 2, "prop_invlist('Any') returns the number of elements in scalar context");
925 my @invlist = prop_invlist("Is_Any");
926 is_deeply(\@invlist, [ 0, 0x110000 ], "prop_invlist works on 'Is_' prefixes");
927 is(prop_invlist("Is_Is_Any"), undef, "prop_invlist('Is_Is_Any') returns <undef> since two is's");
929 use Storable qw(dclone);
931 is(prop_invlist("InKana"), undef, "prop_invlist(<user-defined property returns undef>)");
933 # The way both the tests for invlist and invmap work is that they take the
934 # lists returned by the functions and construct from them what the original
935 # file should look like, which are then compared with the file. If they are
936 # identical, the test passes. What this tests isn't that the results are
937 # correct, but that invlist and invmap haven't introduced errors beyond what
938 # are there in the files. As a small hedge against that, test some
939 # prop_invlist() tables fully with the known correct result. We choose
940 # ASCII_Hex_Digit again, as it is stable.
941 @invlist = prop_invlist("AHex");
942 is_deeply(\@invlist, [ 0x0030, 0x003A, 0x0041,
943 0x0047, 0x0061, 0x0067 ],
944 "prop_invlist('AHex') is exactly the expected set of points");
945 @invlist = prop_invlist("AHex=f");
946 is_deeply(\@invlist, [ 0x0000, 0x0030, 0x003A, 0x0041,
947 0x0047, 0x0061, 0x0067 ],
948 "prop_invlist('AHex=f') is exactly the expected set of points");
950 sub fail_with_diff ($$$$) {
951 # For use below to output better messages
952 my ($prop, $official, $constructed, $tested_function_name) = @_;
954 is($constructed, $official, "$tested_function_name('$prop')");
955 diag("Comment out lines " . (__LINE__ - 1) . " through " . (__LINE__ + 1) . " in '$0' on Un*x-like systems to see just the differences. Uses the 'diff' first in your \$PATH");
958 fail("$tested_function_name('$prop')");
961 my $off = File::Temp->new();
963 print $off $official, "\n";
964 close $off || die "Can't close official";
967 my $gend = File::Temp->new();
968 print $gend $constructed, "\n";
969 close $gend || die "Can't close gend";
971 my $diff = File::Temp->new();
972 system("diff $off $gend > $diff");
974 open my $fh, "<", $diff || die "Can't open $diff";
976 diag("In the diff output below '<' marks lines from the filesystem tables;\n'>' are from $tested_function_name()");
982 # Look at everything we think that mktables tells us exists, both loose and
984 foreach my $set_of_tables (\%utf8::stricter_to_file_of, \%utf8::loose_to_file_of)
986 foreach my $table (keys %$set_of_tables) {
989 my ($prop_only, $value) = split "=", $table;
990 if (defined $value) {
992 # If this is to be loose matched, add in characters to test that.
993 if ($set_of_tables == \%utf8::loose_to_file_of) {
994 $value = "$extra_chars$value";
996 else { # Strict match
998 # Verify that loose matching fails when only strict is called
1000 next unless is(prop_invlist("$prop_only=$extra_chars$value"), undef, "prop_invlist('$prop_only=$extra_chars$value') returns undef since should be strictly matched");
1002 # Strict matching does allow for underscores between digits.
1004 while ($value =~ s/(\d)(\d)/$1_$2/g) {}
1007 # The property portion in compound form specifications always
1009 $mod_table = "$extra_chars$prop_only = $value";
1011 else { # Single-form.
1013 # Like above, use looose if required, and insert underscores
1014 # between digits if strict.
1015 if ($set_of_tables == \%utf8::loose_to_file_of) {
1016 $mod_table = "$extra_chars$table";
1019 $mod_table = $table;
1020 while ($mod_table =~ s/(\d)(\d)/$1_$2/g) {}
1024 my @tested = prop_invlist($mod_table);
1025 if ($table =~ /^_/) {
1026 is(@tested, 0, "prop_invlist('$mod_table') returns an empty list since is internal-only");
1030 # If we have already tested a property that uses the same file, this
1031 # list should be identical to the one that was tested, and can bypass
1033 my $file = $set_of_tables->{$table};
1034 if (exists $tested_invlist{$file}) {
1035 is_deeply(\@tested, $tested_invlist{$file}, "prop_invlist('$mod_table') gave same results as its name synonym");
1038 $tested_invlist{$file} = dclone \@tested;
1040 # A leading '!' in the file name means that it is to be inverted.
1041 my $invert = $file =~ s/^!//;
1042 my $official = do "unicore/lib/$file.pl";
1044 # Get rid of any trailing space and comments in the file.
1045 $official =~ s/\s*(#.*)?$//mg;
1048 # If we are to test against an inverted file, it is easier to invert
1049 # our array than the file.
1050 # The file only is valid for Unicode code points, while the inversion
1051 # list is valid for all possible code points. Therefore, we must test
1052 # just the Unicode part against the file. Later we will test for
1053 # the non-Unicode part.
1055 my $before_invert; # Saves the pre-inverted table.
1057 $before_invert = dclone \@tested;
1058 if (@tested && $tested[0] == 0) {
1063 if (@tested && $tested[-1] == 0x110000) {
1067 push @tested, 0x110000;
1071 # Now construct a string from the list that should match the file.
1072 # The file gives ranges of code points with starting and ending values
1073 # in hex, like this:
1077 # Our list has even numbered elements start ranges that are in the
1078 # list, and odd ones that aren't in the list. Therefore the odd
1079 # numbered ones are one beyond the end of the previous range, but
1080 # otherwise don't get reflected in the file.
1083 for (; $i < @tested - 1; $i += 2) {
1084 my $start = $tested[$i];
1085 my $end = $tested[$i+1] - 1;
1086 if ($start == $end) {
1087 $tested .= sprintf("%04X\n", $start);
1090 $tested .= sprintf "%04X\t%04X\n", $start, $end;
1094 # As mentioned earlier, the disk files only go up through Unicode,
1095 # whereas the prop_invlist() ones go as high as necessary. The
1096 # comparison is only valid through max Unicode.
1097 if ($i == @tested - 1 && $tested[$i] <= 0x10FFFF) {
1098 $tested .= sprintf("%04X\t10FFFF\n", $tested[$i]);
1101 if ($tested ne $official) {
1102 fail_with_diff($mod_table, $official, $tested, "prop_invlist");
1106 # Here, it matched the table. Now need to check for if it is correct
1107 # for beyond Unicode. First, calculate if is the default table or
1108 # not. This is the same algorithm as used internally in
1109 # prop_invlist(), so if it is wrong there, this test won't catch it.
1110 my $prop = lc $table;
1111 ($prop_only, $table) = split /\s*[:=]\s*/, $prop;
1112 if (defined $table) {
1114 # May have optional prefixed 'is'
1115 $prop = &utf8::_loose_name($prop_only) =~ s/^is//r;
1116 $prop = $utf8::loose_property_name_of{$prop};
1117 $prop .= "=" . &utf8::_loose_name($table);
1120 $prop = &utf8::_loose_name($prop);
1122 my $is_default = exists $Unicode::UCD::loose_defaults{$prop};
1124 @tested = @$before_invert if $invert; # Use the original
1125 if (@tested % 2 == 0) {
1127 # If there are an even number of elements, the final one starts a
1128 # range (going to infinity) of code points that are not in the
1131 fail("prop_invlist('$mod_table')");
1132 diag("default table doesn't goto infinity");
1134 diag Dumper \@tested;
1139 # An odd number of elements means the final one starts a range
1140 # (going to infinity of code points that are in the list.
1141 if (! $is_default) {
1142 fail("prop_invlist('$mod_table')");
1143 diag("non-default table needs to stop in the Unicode range");
1145 diag Dumper \@tested;
1150 pass("prop_invlist('$mod_table')");
1154 # Now test prop_invmap().
1156 @list = prop_invmap("Unknown property");
1157 is (@list, 0, "prop_invmap(<Unknown property>) returns an empty list");
1158 @list = prop_invmap(undef);
1159 is (@list, 0, "prop_invmap(undef) returns an empty list");
1160 ok (! eval "prop_invmap('gc')" && $@ ne "",
1161 "prop_invmap('gc') dies in scalar context");
1162 @list = prop_invmap("_X_Begin");
1163 is (@list, 0, "prop_invmap(<internal property>) returns an empty list");
1164 @list = prop_invmap("InKana");
1165 is(@list, 0, "prop_invmap(<user-defined property returns undef>)");
1166 @list = prop_invmap("Perl_Decomposition_Mapping"), undef,
1167 is(@list, 0, "prop_invmap('Perl_Decomposition_Mapping') returns <undef> since internal-Perl-only");
1168 @list = prop_invmap("Perl_Charnames"), undef,
1169 is(@list, 0, "prop_invmap('Perl_Charnames') returns <undef> since internal-Perl-only");
1170 @list = prop_invmap("Is_Is_Any");
1171 is(@list, 0, "prop_invmap('Is_Is_Any') returns <undef> since two is's");
1173 # The set of properties to test on has already been compiled into %props by
1174 # the prop_aliases() tests.
1178 # Like prop_invlist(), prop_invmap() is tested by comparing the results
1179 # returned by the function with the tables that mktables generates. Some of
1180 # these tables are directly stored as files on disk, in either the unicore or
1181 # unicore/To directories, and most should be listed in the mktables generated
1182 # hash %utf8::loose_property_to_file_of, with a few additional ones that this
1183 # handles specially. For these, the files are read in directly, massaged, and
1184 # compared with what invmap() returns. The SPECIALS hash in some of these
1185 # files overrides values in the main part of the file.
1187 # The other properties are tested indirectly by generating all the possible
1188 # inversion lists for the property, and seeing if those match the inversion
1189 # lists returned by prop_invlist(), which has already been tested.
1192 foreach my $prop (keys %props) {
1193 my $loose_prop = &utf8::_loose_name(lc $prop);
1194 my $suppressed = grep { $_ eq $loose_prop }
1195 @Unicode::UCD::suppressed_properties;
1197 # Find the short and full names that this property goes by
1198 my ($name, $full_name) = prop_aliases($prop);
1200 if (! $suppressed) {
1201 fail("prop_invmap('$prop')");
1202 diag("is unknown to prop_aliases(), and we need it in order to test prop_invmap");
1207 # Normalize the short name, as it is stored in the hashes under the
1208 # normalized version.
1209 $name = &utf8::_loose_name(lc $name);
1211 # Add in the characters that are supposed to be ignored to test loose
1212 # matching, which the tested function applies to all properties
1213 my $mod_prop = "$extra_chars$prop";
1215 my ($invlist_ref, $invmap_ref, $format, $missing) = prop_invmap($mod_prop);
1216 my $return_ref = [ $invlist_ref, $invmap_ref, $format, $missing ];
1218 # If have already tested this property under a different name, merely
1219 # compare the return from now with the saved one from before.
1220 if (exists $tested_invmaps{$name}) {
1221 is_deeply($return_ref, $tested_invmaps{$name}, "prop_invmap('$mod_prop') gave same results as its synonym, '$name'");
1224 $tested_invmaps{$name} = dclone $return_ref;
1226 # If prop_invmap() returned nothing, is ok iff is a property whose file is
1229 if (defined $format) {
1230 fail("prop_invmap('$mod_prop')");
1231 diag("did not return undef for suppressed property $prop");
1235 elsif (!defined $format) {
1236 fail("prop_invmap('$mod_prop')");
1237 diag("'$prop' is unknown to prop_invmap()");
1241 # The two parallel arrays must have the same number of elements.
1242 if (@$invlist_ref != @$invmap_ref) {
1243 fail("prop_invmap('$mod_prop')");
1245 . scalar @$invlist_ref
1246 . " while invmap has "
1247 . scalar @$invmap_ref
1252 # The last element must be for the above-Unicode code points, and must be
1253 # for the default value.
1254 if ($invlist_ref->[-1] != 0x110000) {
1255 fail("prop_invmap('$mod_prop')");
1256 diag("The last inversion list element is not 0x110000");
1259 if ($invmap_ref->[-1] ne $missing) {
1260 fail("prop_invmap('$mod_prop')");
1261 diag("The last inversion list element is '$invmap_ref->[-1]', and should be '$missing'");
1265 if ($name eq 'bmg') { # This one has an atypical $missing
1266 if ($missing ne "") {
1267 fail("prop_invmap('$mod_prop')");
1268 diag("The missings should be \"\"; got '$missing'");
1272 elsif ($format =~ /^ a (?!r) /x) {
1273 if ($full_name eq 'Perl_Decimal_Digit') {
1274 if ($missing ne "") {
1275 fail("prop_invmap('$mod_prop')");
1276 diag("The missings should be \"\"; got '$missing'");
1280 elsif ($missing ne "0") {
1281 fail("prop_invmap('$mod_prop')");
1282 diag("The missings should be '0'; got '$missing'");
1286 elsif ($missing =~ /[<>]/) {
1287 fail("prop_invmap('$mod_prop')");
1288 diag("The missings should NOT be something with <...>'");
1291 # I don't want to hard code in what all the missings should be, so
1292 # those don't get fully tested.
1295 # Certain properties don't have their own files, but must be constructed
1297 my $proxy_prop = $name;
1298 if ($full_name eq 'Present_In') {
1299 $proxy_prop = "age"; # The maps for these two props are identical
1301 elsif ($full_name eq 'Simple_Case_Folding'
1302 || $full_name =~ /Simple_ (.) .*? case_Mapping /x)
1304 if ($full_name eq 'Simple_Case_Folding') {
1308 # We captured the U, L, or T, leading to uc, lc, or tc.
1309 $proxy_prop = lc $1 . "c";
1311 if ($format ne "a") {
1312 fail("prop_invmap('$mod_prop')");
1313 diag("The format should be 'a'; got '$format'");
1318 if ($format !~ / ^ (?: a [der]? | ale? | n | sl? ) $ /x) {
1319 fail("prop_invmap('$mod_prop')");
1320 diag("Unknown format '$format'");
1327 # Handle the properties that have full disk files for them (except the
1328 # Name property which is structurally enough different that it is handled
1329 # separately below.)
1333 ($base_file = $utf8::loose_property_to_file_of{$proxy_prop})
1334 || exists $utf8::loose_to_file_of{$proxy_prop}
1337 # In the above, blk is done unconditionally, as we need to test that
1338 # the old-style block names are returned, even if mktables has
1339 # generated a file for the new-style; the test for dm comes afterward,
1340 # so that if a file has been generated for it explicitly, we use that
1341 # file (which is valid, unlike blk) instead of the combo
1342 # Decomposition.pl files.
1345 if ($name eq 'blk') {
1347 # The blk property is special. The original file with old block
1348 # names is retained, and the default is to not write out a
1349 # new-name file. What we do is get the old names into a data
1350 # structure, and from that create what the new file would look
1351 # like. $base_file is needed to be defined, just to avoid a
1353 $base_file = "This is a dummy name";
1354 my $blocks_ref = charblocks();
1356 for my $range (sort { $a->[0][0] <=> $b->[0][0] }
1357 values %$blocks_ref)
1359 # Translate the charblocks() data structure to what the file
1361 $official .= sprintf"%04X\t%04X\t%s\n",
1368 $base_file = "Decomposition" if $format eq 'ad';
1370 # Above leaves $base_file undefined only if it came from the hash
1371 # below. This should happen only when it is a binary property
1372 # (and are accessing via a single-form name, like 'In_Latin1'),
1373 # and so it is stored in a different directory than the To ones.
1374 # XXX Currently, the only cases where it is complemented are the
1375 # ones that have no code points. And it works out for these that
1376 # 1) complementing them, and then 2) adding or subtracting the
1377 # initial 0 and final 110000 cancel each other out. But further
1378 # work would be needed in the unlikely event that an inverted
1379 # property comes along without these characteristics
1380 if (!defined $base_file) {
1381 $base_file = $utf8::loose_to_file_of{$proxy_prop};
1382 $is_binary = ($base_file =~ s/^!//) ? -1 : 1;
1383 $base_file = "lib/$base_file";
1387 $file = "unicore/$base_file.pl";
1388 $official = do $file;
1390 # Get rid of any trailing space and comments in the file.
1391 $official =~ s/\s*(#.*)?$//mg;
1393 if ($format eq 'ad') {
1394 my @official = split /\n/, $official;
1396 foreach my $line (@official) {
1397 my ($start, $end, $value)
1398 = $line =~ / ^ (.+?) \t (.*?) \t (.+?)
1399 \s* ( \# .* )? $ /x;
1400 # Decomposition.pl also has the <compatible> types in it,
1401 # which should be removed.
1402 $value =~ s/<.*?> //;
1403 $official .= "$start\t\t$value\n";
1405 # If this is a multi-char range, we turn it into as many
1406 # single character ranges as necessary. This makes things
1409 for my $i (hex($start) + 1 .. hex $end) {
1410 $official .= sprintf "%04X\t\t%s\n", $i, $value;
1418 # If there are any special elements, get a reference to them.
1419 my $swash_name = $utf8::file_to_swash_name{$base_file};
1422 $specials_ref = $utf8::SwashInfo{$swash_name}{'specials_name'};
1423 if ($specials_ref) {
1425 # Convert from the name to the actual reference.
1427 $specials_ref = \%{$specials_ref};
1431 # Certain of the proxy properties have to be adjusted to match the
1433 if ($full_name =~ /^(Case_Folding|(Lower|Title|Upper)case_Mapping)/) {
1435 # Here we have either
1436 # 1) Case_Folding; or
1437 # 2) a proxy that is a full mapping, which means that what the
1438 # real property is is the equivalent simple mapping.
1439 # In both cases, the file will have a standard list containing
1440 # simple mappings (to a single code point), and a specials hash
1441 # which contains all the mappings that are to multiple code
1442 # points. First, extract a list containing all the file's simple
1445 for (split "\n", $official) {
1446 my ($start, $end, $value) = / ^ (.+?) \t (.*?) \t (.+?)
1447 \s* ( \# .* )? $ /x;
1448 $end = $start if $end eq "";
1449 push @list, [ hex $start, hex $end, $value ];
1452 # For these mappings, the file contains all the simple mappings,
1453 # including the ones that are overridden by the specials. These
1454 # need to be removed as the list is for just the full ones.
1456 # Go through any special mappings one by one. They are packed.
1458 foreach my $utf8_cp (sort keys %$specials_ref) {
1459 my $cp = unpack("C0U", $utf8_cp);
1461 # Find the spot in the @list of simple mappings that this
1462 # special applies to; uses a linear search.
1463 while ($i < @list -1 ) {
1464 last if $cp <= $list[$i][1];
1468 # Here $i is such that it points to the first range which ends
1469 # at or above cp, and hence is the only range that could
1470 # possibly contain it.
1472 # If not in this range, no range contains it: nothing to
1474 next if $cp < $list[$i][0];
1476 # Otherwise, remove the existing entry. If it is the first
1477 # element of the range...
1478 if ($cp == $list[$i][0]) {
1480 # ... and there are other elements in the range, just shorten
1481 # the range to exclude this code point.
1482 if ($list[$i][1] > $list[$i][0]) {
1486 # ... but if it is the only element in the range, remove
1489 splice @list, $i, 1;
1492 else { # Is somewhere in the middle of the range
1493 # Split the range into two, excluding this one in the
1495 splice @list, $i, 1,
1496 [ $list[$i][0], $cp - 1, $list[$i][2] ],
1497 [ $cp + 1, $list[$i][1], $list[$i][2] ];
1501 # Here, have gone through all the specials, modifying @list as
1502 # needed. Turn it back into what the file should look like.
1504 for my $element (@list) {
1505 $official .= "\n" if $official;
1506 if ($element->[1] == $element->[0]) {
1507 $official .= sprintf "%04X\t\t%s", $element->[0], $element->[2];
1510 $official .= sprintf "%04X\t%04X\t%s", $element->[0], $element->[1], $element->[2];
1514 elsif ($full_name =~ /Simple_(Case_Folding|(Lower|Title|Upper)case_Mapping)/)
1517 # These properties have everything in the regular array, and the
1518 # specials are superfluous.
1519 undef $specials_ref;
1521 elsif ($name eq 'bmg') {
1523 # For this property, the file is output using hex notation for the
1524 # map, with all ranges equal to length 1. Convert from hex to
1526 my @lines = split "\n", $official;
1527 foreach my $line (@lines) {
1528 my ($code_point, $map) = split "\t\t", $line;
1529 $line = $code_point . "\t\t" . hex $map;
1531 $official = join "\n", @lines;
1534 # Here, in $official, we have what the file looks like, or should like
1535 # if we've had to fix it up. Now take the invmap() output and reverse
1536 # engineer from that what the file should look like. Each iteration
1537 # appends the next line to the running string.
1538 my $tested_map = "";
1540 # Create a copy of the file's specials hash. (It has been undef'd if
1541 # we know it isn't relevant to this property, so if it exists, it's an
1542 # error or is relevant). As we go along, we delete from that copy.
1543 # If a delete fails, or something is left over after we are done,
1545 my %specials = %$specials_ref if $specials_ref;
1547 # The extra -1 is because the final element has been tested above to
1548 # be for anything above Unicode. The file doesn't go that high.
1549 for (my $i = 0; $i < @$invlist_ref - 1; $i++) {
1551 # If the map element is a reference, have to stringify it (but
1552 # don't do so if the format doesn't allow references, so that an
1553 # improper format will generate an error.
1554 if (ref $invmap_ref->[$i]
1555 && ($format eq 'ad' || $format =~ /^ . l /x))
1557 # The stringification depends on the format.
1558 if ($format eq 'sl') {
1560 # At the time of this writing, there are two types of 'sl'
1561 # format One, in Name_Alias, has multiple separate entries
1562 # for each code point; the other, in Script_Extension, is space
1563 # separated. Assume the latter for non-Name_Alias.
1564 if ($full_name ne 'Name_Alias') {
1565 $invmap_ref->[$i] = join " ", @{$invmap_ref->[$i]};
1568 # For Name_Alias, we emulate the file. Entries with
1569 # just one value don't need any changes, but we
1570 # convert the list entries into a series of lines for
1571 # the file, starting with the first name. The
1572 # succeeding entries are on separate lines, with the
1573 # code point repeated for each one and then two tabs,
1574 # then the value. Code at the end of the loop will
1575 # set up the first line with its code point and two
1576 # tabs before the value, just as it does for every
1577 # other property; thus the special handling of the
1579 if (ref $invmap_ref->[$i]) {
1580 my $hex_cp = sprintf("%04X", $invlist_ref->[$i]);
1581 my $concatenated = $invmap_ref->[$i][0];
1582 for (my $j = 1; $j < @{$invmap_ref->[$i]}; $j++) {
1583 $concatenated .= "\n$hex_cp\t\t" . $invmap_ref->[$i][$j];
1585 $invmap_ref->[$i] = $concatenated;
1589 elsif ($format =~ / ^ al e? $/x) {
1591 # For a al property, the stringified result should be in
1592 # the specials hash. The key is the packed code point,
1593 # and the value is the packed map.
1595 if (! defined ($value = delete $specials{pack("C0U", $invlist_ref->[$i]) })) {
1596 fail("prop_invmap('$mod_prop')");
1597 diag(sprintf "There was no specials element for %04X", $invlist_ref->[$i]);
1600 my $packed = pack "U*", @{$invmap_ref->[$i]};
1601 if ($value ne $packed) {
1602 fail("prop_invmap('$mod_prop')");
1603 diag(sprintf "For %04X, expected the mapping to be '$packed', but got '$value'");
1607 # As this doesn't get tested when we later compare with
1608 # the actual file, it could be out of order and we
1610 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1611 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1613 fail("prop_invmap('$mod_prop')");
1614 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1619 elsif ($format eq 'ad') {
1621 # The decomposition mapping file has the code points as
1622 # a string of space-separated hex constants.
1623 $invmap_ref->[$i] = join " ", map { sprintf "%04X", $_ } @{$invmap_ref->[$i]};
1626 fail("prop_invmap('$mod_prop')");
1627 diag("Can't handle format '$format'");
1631 elsif ($format eq 'ad' || $format eq 'ale') {
1633 # The numerics in the returned map are stored as adjusted
1634 # decimal integers. The defaults are 0, and don't appear in
1635 # $official, and are excluded later, but the elements must be
1636 # converted back to their hex values before comparing with
1637 # $official, as these files, for backwards compatibility, are
1638 # not stored as adjusted. (There currently is only one ale
1639 # property, nfkccf. If that changed this would also have to.)
1640 if ($invmap_ref->[$i] =~ / ^ -? \d+ $ /x
1641 && $invmap_ref->[$i] != 0)
1643 my $next = $invmap_ref->[$i] + 1;
1644 $invmap_ref->[$i] = sprintf("%04X", $invmap_ref->[$i]);
1646 # If there are other elements in this range they need to
1647 # be adjusted; they must individually be re-mapped. Do
1648 # this by splicing in a new element into the list and the
1649 # map containing the remainder of the range. Next time
1650 # through we will look at that (possibly splicing again
1651 # until the whole range is processed).
1652 if ($invlist_ref->[$i+1] > $invlist_ref->[$i] + 1) {
1653 splice @$invlist_ref, $i+1, 0,
1654 $invlist_ref->[$i] + 1;
1655 splice @$invmap_ref, $i+1, 0, $next;
1658 if ($format eq 'ale' && $invmap_ref->[$i] eq "") {
1660 # ale properties have maps to the empty string that also
1661 # should be in the specials hash, with the key the packed
1662 # code point, and the map just empty.
1664 if (! defined ($value = delete $specials{pack("C0U", $invlist_ref->[$i]) })) {
1665 fail("prop_invmap('$mod_prop')");
1666 diag(sprintf "There was no specials element for %04X", $invlist_ref->[$i]);
1670 fail("prop_invmap('$mod_prop')");
1671 diag(sprintf "For %04X, expected the mapping to be \"\", but got '$value'", $invlist_ref->[$i]);
1675 # As this doesn't get tested when we later compare with
1676 # the actual file, it could be out of order and we
1678 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1679 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1681 fail("prop_invmap('$mod_prop')");
1682 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1688 elsif ($is_binary) { # These binary files don't have an explicit Y
1689 $invmap_ref->[$i] =~ s/Y//;
1692 # The file doesn't include entries that map to $missing, so don't
1693 # include it in the built-up string. But make sure that it is in
1694 # the correct order in the input.
1695 if ($invmap_ref->[$i] eq $missing) {
1696 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1697 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1699 fail("prop_invmap('$mod_prop')");
1700 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1706 # The ad property has one entry which isn't in the file.
1707 # Ignore it, but make sure it is in order.
1709 && $invmap_ref->[$i] eq '<hangul syllable>'
1710 && $invlist_ref->[$i] == 0xAC00)
1712 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1713 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1715 fail("prop_invmap('$mod_prop')");
1716 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1722 # Finally have figured out what the map column in the file should
1723 # be. Append the line to the running string.
1724 my $start = $invlist_ref->[$i];
1725 my $end = $invlist_ref->[$i+1] - 1;
1726 $end = ($start == $end) ? "" : sprintf("%04X", $end);
1727 if ($invmap_ref->[$i] ne "") {
1728 $tested_map .= sprintf "%04X\t%s\t%s\n", $start, $end, $invmap_ref->[$i];
1730 elsif ($end ne "") {
1731 $tested_map .= sprintf "%04X\t%s\n", $start, $end;
1734 $tested_map .= sprintf "%04X\n", $start;
1736 } # End of looping over all elements.
1738 # Here are done with generating what the file should look like
1743 if ($tested_map ne $official) {
1744 fail_with_diff($mod_prop, $official, $tested_map, "prop_invmap");
1748 # There shouldn't be any specials unaccounted for.
1749 if (keys %specials) {
1750 fail("prop_invmap('$mod_prop')");
1751 diag("Unexpected specials: " . join ", ", keys %specials);
1755 elsif ($format eq 'n') {
1757 # Handle the Name property similar to the above. But the file is
1758 # sufficiently different that it is more convenient to make a special
1759 # case for it. It is a combination of the Name, Unicode1_Name, and
1760 # Name_Alias properties, and named sequences. We need to remove all
1761 # but the Name in order to do the comparison.
1763 if ($missing ne "") {
1764 fail("prop_invmap('$mod_prop')");
1765 diag("The missings should be \"\"; got \"missing\"");
1769 $official = do "unicore/Name.pl";
1771 # Get rid of the named sequences portion of the file. These don't
1772 # have a tab before the first blank on a line.
1773 $official =~ s/ ^ [^\t]+ \ .*? \n //xmg;
1775 # And get rid of the controls. These are named in the file, but
1776 # shouldn't be in the property. This gets rid of the two ranges in
1777 # one fell swoop, and also all the Unicode1_Name values that may not
1779 $official =~ s/ 00000 \t .* 0001F .*? \n//xs;
1780 $official =~ s/ 0007F \t .* 0009F .*? \n//xs;
1782 # And remove the aliases. We read in the Name_Alias property, and go
1783 # through them one by one.
1784 my ($aliases_code_points, $aliases_maps, undef, undef)
1785 = &prop_invmap('Name_Alias');
1786 for (my $i = 0; $i < @$aliases_code_points; $i++) {
1787 my $code_point = $aliases_code_points->[$i];
1789 # Already removed these above.
1790 next if $code_point <= 0x1F
1791 || ($code_point >= 0x7F && $code_point <= 0x9F);
1793 my $hex_code_point = sprintf "%05X", $code_point;
1795 # Convert to a list if not already to make the following loop
1797 $aliases_maps->[$i] = [ $aliases_maps->[$i] ]
1798 if ! ref $aliases_maps->[$i];
1800 # Remove each alias for this code point from the file
1801 foreach my $alias (@{$aliases_maps->[$i]}) {
1803 # Remove the alias type from the entry, retaining just the name.
1806 $alias = quotemeta($alias);
1807 $official =~ s/$hex_code_point \t $alias \n //x;
1812 # Here have adjusted the file. We also have to adjust the returned
1813 # inversion map by checking and deleting all the lines in it that
1814 # won't be in the file. These are the lines that have generated
1815 # things, like <hangul syllable>.
1816 my $tested_map = ""; # Current running string
1817 my @code_point_in_names =
1818 @Unicode::UCD::code_points_ending_in_code_point;
1820 for my $i (0 .. @$invlist_ref - 1 - 1) {
1821 my $start = $invlist_ref->[$i];
1822 my $end = $invlist_ref->[$i+1] - 1;
1823 if ($invmap_ref->[$i] eq $missing) {
1824 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1825 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1827 fail("prop_invmap('$mod_prop')");
1828 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1833 if ($invmap_ref->[$i] =~ / (.*) ( < .*? > )/x) {
1836 if (($i > 0 && $invlist_ref->[$i] <= $invlist_ref->[$i-1])
1837 || $invlist_ref->[$i] >= $invlist_ref->[$i+1])
1839 fail("prop_invmap('$mod_prop')");
1840 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1843 if ($type eq "<hangul syllable>") {
1845 fail("prop_invmap('$mod_prop')");
1846 diag("Unexpected text in $invmap_ref->[$i]");
1849 if ($start != 0xAC00) {
1850 fail("prop_invmap('$mod_prop')");
1851 diag(sprintf("<hangul syllables> should begin at 0xAC00, got %04X", $start));
1854 if ($end != $start + 11172 - 1) {
1855 fail("prop_invmap('$mod_prop')");
1856 diag(sprintf("<hangul syllables> should end at %04X, got %04X", $start + 11172 -1, $end));
1860 elsif ($type ne "<code point>") {
1861 fail("prop_invmap('$mod_prop')");
1862 diag("Unexpected text '$type' in $invmap_ref->[$i]");
1867 # Look through the array of names that end in code points,
1868 # and look for this start and end. If not found is an
1869 # error. If found, delete it, and at the end, make sure
1870 # have deleted everything.
1871 for my $i (0 .. @code_point_in_names - 1) {
1872 my $hash = $code_point_in_names[$i];
1873 if ($hash->{'low'} == $start
1874 && $hash->{'high'} == $end
1875 && "$hash->{'name'}-" eq $name)
1877 splice @code_point_in_names, $i, 1;
1881 fail("prop_invmap('$mod_prop')");
1882 diag("Unexpected code-point-in-name line '$invmap_ref->[$i]'");
1891 # Have adjusted the map, as needed. Append to running string.
1892 $end = ($start == $end) ? "" : sprintf("%05X", $end);
1893 $tested_map .= sprintf "%05X\t%s\n", $start, $invmap_ref->[$i];
1896 # Finished creating the string from the inversion map. Can compare
1897 # with what the file is.
1899 if ($tested_map ne $official) {
1900 fail_with_diff($mod_prop, $official, $tested_map, "prop_invmap");
1903 if (@code_point_in_names) {
1904 fail("prop_invmap('$mod_prop')");
1906 diag("Missing code-point-in-name line(s)" . Dumper \@code_point_in_names);
1910 elsif ($format eq 's') {
1912 # Here the map is not more or less directly from a file stored on
1913 # disk. We try a different tack. These should all be properties that
1914 # have just a few possible values (most of them are binary). We go
1915 # through the map list, sorting each range into buckets, one for each
1916 # map value. Thus for binary properties there will be a bucket for Y
1917 # and one for N. The buckets are inversion lists. We compare each
1918 # constructed inversion list with what we would get for it using
1919 # prop_invlist(), which has already been tested. If they all match,
1920 # the whole map must have matched.
1924 # (The extra -1 is to not look at the final element in the loop, which
1925 # we know is the one that starts just beyond Unicode and goes to
1927 for my $i (0 .. @$invlist_ref - 1 - 1) {
1928 my $range_start = $invlist_ref->[$i];
1930 # Because we are sorting into buckets, things could be
1931 # out-of-order here, and still be in the correct order in the
1932 # bucket, and hence wouldn't show up as an error; so have to
1934 if (($i > 0 && $range_start <= $invlist_ref->[$i-1])
1935 || $range_start >= $invlist_ref->[$i+1])
1937 fail("prop_invmap('$mod_prop')");
1938 diag(sprintf "Range beginning at %04X is out-of-order.", $invlist_ref->[$i]);
1942 # This new range closes out the range started in the previous
1944 push @{$maps{$previous_map}}, $range_start if defined $previous_map;
1946 # And starts a range which will be closed in the next iteration.
1947 $previous_map = $invmap_ref->[$i];
1948 push @{$maps{$previous_map}}, $range_start;
1951 # The range we just started hasn't been closed, and we didn't look at
1952 # the final element of the loop. If that range is for the default
1953 # value, it shouldn't be closed, as it is to extend to infinity. But
1954 # otherwise, it should end at the final Unicode code point, and the
1955 # list that maps to the default value should have another element that
1956 # does go to infinity for every above Unicode code point.
1958 if (@$invlist_ref > 1) {
1959 my $penultimate_map = $invmap_ref->[-2];
1960 if ($penultimate_map ne $missing) {
1962 # The -1th element contains the first non-Unicode code point.
1963 push @{$maps{$penultimate_map}}, $invlist_ref->[-1];
1964 push @{$maps{$missing}}, $invlist_ref->[-1];
1968 # Here, we have the buckets (inversion lists) all constructed. Go
1969 # through each and verify that matches what prop_invlist() returns.
1970 # We could use is_deeply() for the comparison, but would get multiple
1971 # messages for each $prop.
1972 foreach my $map (keys %maps) {
1973 my @off_invlist = prop_invlist("$prop = $map");
1974 my $min = (@off_invlist >= @{$maps{$map}})
1977 for my $i (0 .. $min- 1) {
1978 if ($i > @off_invlist - 1) {
1979 fail("prop_invmap('$mod_prop')");
1980 diag("There is no element [$i] for $prop=$map from prop_invlist(), while [$i] in the implicit one constructed from prop_invmap() is '$maps{$map}[$i]'");
1983 elsif ($i > @{$maps{$map}} - 1) {
1984 fail("prop_invmap('$mod_prop')");
1985 diag("There is no element [$i] from the implicit $prop=$map constructed from prop_invmap(), while [$i] in the one from prop_invlist() is '$off_invlist[$i]'");
1988 elsif ($maps{$map}[$i] ne $off_invlist[$i]) {
1989 fail("prop_invmap('$mod_prop')");
1990 diag("Element [$i] of the implicit $prop=$map constructed from prop_invmap() is '$maps{$map}[$i]', and the one from prop_invlist() is '$off_invlist[$i]'");
1996 else { # Don't know this property nor format.
1998 fail("prop_invmap('$mod_prop')");
1999 diag("Unknown format '$format'");
2002 pass("prop_invmap('$mod_prop')");