6 unless(grep /blib/, @INC) {
11 $SIG{__WARN__} = sub { push @WARN, @_ };
20 use charnames ':full';
22 print "not " unless "Here\N{EXCLAMATION MARK}?" eq "Here!?";
26 use bytes; # TEST -utf8 can switch utf8 on
28 print "# \$res=$res \$\@='$@'\nnot "
29 if $res = eval <<'EOE'
30 use charnames ":full";
31 "Here: \N{CYRILLIC SMALL LETTER BE}!";
34 or $@ !~ /above 0xFF/;
36 # print "# \$res=$res \$\@='$@'\n";
38 print "# \$res=$res \$\@='$@'\nnot "
39 if $res = eval <<'EOE'
40 use charnames 'cyrillic';
44 or $@ !~ /CYRILLIC CAPITAL LETTER BE.*above 0xFF/;
48 # If octal representation of unicode char is \0xyzt, then the utf8 is \3xy\2zt
49 if (ord('A') == 65) { # as on ASCII or UTF-8 machines
50 $encoded_be = "\320\261";
51 $encoded_alpha = "\316\261";
52 $encoded_bet = "\327\221";
53 $encoded_deseng = "\360\220\221\215";
55 else { # EBCDIC where UTF-EBCDIC may be used (this may be 1047 specific since
56 # UTF-EBCDIC is codepage specific)
57 $encoded_be = "\270\102\130";
58 $encoded_alpha = "\264\130";
59 $encoded_bet = "\270\125\130";
60 $encoded_deseng = "\336\102\103\124";
68 use charnames ':full';
70 print "not " unless to_bytes("\N{CYRILLIC SMALL LETTER BE}") eq $encoded_be;
73 use charnames qw(cyrillic greek :short);
75 print "not " unless to_bytes("\N{be},\N{alpha},\N{hebrew:bet}")
76 eq "$encoded_be,$encoded_alpha,$encoded_bet";
81 use charnames ':full';
82 print "not " unless "\x{263a}" eq "\N{WHITE SMILING FACE}";
84 print "not " unless length("\x{263a}") == 1;
86 print "not " unless length("\N{WHITE SMILING FACE}") == 1;
88 print "not " unless sprintf("%vx", "\x{263a}") eq "263a";
90 print "not " unless sprintf("%vx", "\N{WHITE SMILING FACE}") eq "263a";
92 print "not " unless sprintf("%vx", "\xFF\N{WHITE SMILING FACE}") eq "ff.263a";
94 print "not " unless sprintf("%vx", "\x{ff}\N{WHITE SMILING FACE}") eq "ff.263a";
99 use charnames qw(:full);
103 my $named = "\N{CUBE ROOT}";
105 print "not " unless ord($x) == ord($named);
110 use charnames qw(:full);
112 print "not " unless "\x{100}\N{CENT SIGN}" eq "\x{100}"."\N{CENT SIGN}";
117 use charnames ':full';
120 unless to_bytes("\N{DESERET SMALL LETTER ENG}") eq $encoded_deseng;
127 no utf8; # naked Latin-1
129 if (ord("Ä") == 0xc4) { # Try to do this only on Latin-1.
130 use charnames ':full';
131 my $text = "\N{LATIN CAPITAL LETTER A WITH DIAERESIS}";
132 print "not " unless $text eq "\xc4" && ord($text) == 0xc4;
135 print "ok 16 # Skip: not Latin-1\n";
140 print "not " unless charnames::viacode(0x1234) eq "ETHIOPIC SYLLABLE SEE";
144 print "not " if defined charnames::viacode(0x0590);
150 sprintf("%04X", charnames::vianame("GOTHIC LETTER AHSA")) eq "10330";
154 defined charnames::vianame("NONE SUCH");
159 # check that caching at least hasn't broken anything
161 print "not " unless charnames::viacode(0x1234) eq "ETHIOPIC SYLLABLE SEE";
165 sprintf("%04X", charnames::vianame("GOTHIC LETTER AHSA")) eq "10330";
170 print "not " unless "\N{CHARACTER TABULATION}" eq "\t";
173 print "not " unless "\N{ESCAPE}" eq "\e";
176 print "not " unless "\N{NULL}" eq "\c@";
181 print "not " unless "\N{CARRIAGE RETURN (CR)}" eq "\n";
184 print "not " unless "\N{CARRIAGE RETURN}" eq "\n";
187 print "not " unless "\N{CR}" eq "\n";
192 print "not " unless "\N{LINE FEED (LF)}" eq "\n";
195 print "not " unless "\N{LINE FEED}" eq "\n";
198 print "not " unless "\N{LF}" eq "\n";
202 my $nel = ord("A") == 193 ? qr/^(?:\x15|\x25)$/ : qr/^\x85$/;
204 print "not " unless "\N{NEXT LINE (NEL)}" =~ $nel;
207 print "not " unless "\N{NEXT LINE}" =~ $nel;
210 print "not " unless "\N{NEL}" =~ $nel;
213 print "not " unless "\N{BYTE ORDER MARK}" eq chr(0xFEFF);
216 print "not " unless "\N{BOM}" eq chr(0xFEFF);
220 use warnings 'deprecated';
222 print "not " unless "\N{HORIZONTAL TABULATION}" eq "\t";
225 print "not " unless grep { /"HORIZONTAL TABULATION" is deprecated/ } @WARN;
228 no warnings 'deprecated';
230 print "not " unless "\N{VERTICAL TABULATION}" eq "\013";
233 print "not " if grep { /"VERTICAL TABULATION" is deprecated/ } @WARN;
237 print "not " unless charnames::viacode(0xFEFF) eq "ZERO WIDTH NO-BREAK SPACE";
242 print "not " unless ord("\N{BOM}") == 0xFEFF;
246 print "not " unless ord("\N{ZWNJ}") == 0x200C;
249 print "not " unless ord("\N{ZWJ}") == 0x200D;
252 print "not " unless "\N{U+263A}" eq "\N{WHITE SMILING FACE}";
257 0x3093 == charnames::vianame("HIRAGANA LETTER N");
261 0x0397 == charnames::vianame("GREEK CAPITAL LETTER ETA");
265 print "not " if defined charnames::viacode(0x110000);
268 print "not " if grep { /you asked for U+110000/ } @WARN;
272 # ---- Alias extensions
274 my $tmpfile = "tmp0000";
275 my $alifile = File::Spec->catfile(File::Spec->updir, qw(lib unicore xyzzy_alias.pl));
277 1 while -e ++$tmpfile;
278 END { if ($tmpfile) { 1 while unlink $tmpfile; } }
282 @prgs = split "\n########\n", <DATA>;
287 my ($code, $exp) = ((split m/\nEXPECT\n/), '$');
288 my ($prog, $fil) = ((split m/\nFILE\n/, $code), "");
289 open my $tmp, "> $tmpfile" or die "Could not open $tmpfile: $!";
290 print $tmp $prog, "\n";
291 close $tmp or die "Could not close $tmpfile: $!";
294 open my $ali, "> $alifile" or die "Could not open $alifile: $!";
296 close $ali or die "Could not close $alifile: $!";
298 my $res = runperl( switches => $switch,
299 progfile => $tmpfile,
302 $res =~ s/[\r\n]+$//;
303 $res =~ s/tmp\d+/-/g; # fake $prog from STDIN
304 $res =~ s/\n%[A-Z]+-[SIWEF]-.*$// # clip off DCL status msg
306 $exp =~ s/[\r\n]+$//;
307 if ($^O eq "MacOS") {
308 $exp =~ s{(\./)?abc\.pm}{:abc.pm}g;
309 $exp =~ s{./abc} {:abc}g;
311 my $pfx = ($res =~ s/^PREFIX\n//);
312 my $rexp = qr{^$exp};
313 if ($res =~ s/^SKIPPED\n//) {
316 elsif (($pfx and $res !~ /^\Q$expected/) or
317 (!$pfx and $res !~ $rexp)) {
325 print "ok ", ++$i, "\n";
326 1 while unlink $tmpfile;
328 1 while unlink $alifile;
331 # [perl #30409] charnames.pm clobbers default variable
333 eval "use charnames ':full';";
334 print "not " unless $_ eq 'foobar';
339 use charnames ":scoobydoo";
340 "Here: \N{e_ACUTE}!\n";
342 unsupported special ':scoobydoo' in charnames at
344 # wrong type of alias (missing colon)
345 use charnames "alias";
346 "Here: \N{e_ACUTE}!\n";
348 Unknown charname 'e_ACUTE' at
350 # alias without an argument
351 use charnames ":alias";
352 "Here: \N{e_ACUTE}!\n";
354 :alias needs an argument in charnames at
357 use charnames ":alias" => ":full";
358 "Here: \N{e_ACUTE}!\n";
360 :alias cannot use existing pragma :full \(reversed order\?\) at
362 # alias with hashref but no :full
363 use charnames ":alias" => { e_ACUTE => "LATIN SMALL LETTER E WITH ACUTE" };
364 "Here: \N{e_ACUTE}!\n";
366 Unknown charname 'LATIN SMALL LETTER E WITH ACUTE' at
368 # alias with hashref but with :short
369 use charnames ":short", ":alias" => { e_ACUTE => "LATIN SMALL LETTER E WITH ACUTE" };
370 "Here: \N{e_ACUTE}!\n";
372 Unknown charname 'LATIN SMALL LETTER E WITH ACUTE' at
374 # alias with hashref to :full OK
375 use charnames ":full", ":alias" => { e_ACUTE => "LATIN SMALL LETTER E WITH ACUTE" };
376 "Here: \N{e_ACUTE}!\n";
380 # alias with hashref to :short but using :full
381 use charnames ":full", ":alias" => { e_ACUTE => "LATIN:e WITH ACUTE" };
382 "Here: \N{e_ACUTE}!\n";
384 Unknown charname 'LATIN:e WITH ACUTE' at
386 # alias with hashref to :short OK
387 use charnames ":short", ":alias" => { e_ACUTE => "LATIN:e WITH ACUTE" };
388 "Here: \N{e_ACUTE}!\n";
392 # alias with bad hashref
393 use charnames ":short", ":alias" => "e_ACUTE";
394 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
396 unicore/e_ACUTE_alias.pl cannot be used as alias file for charnames at
398 # alias with arrayref
399 use charnames ":short", ":alias" => [ e_ACUTE => "LATIN:e WITH ACUTE" ];
400 "Here: \N{e_ACUTE}!\n";
402 Only HASH reference supported as argument to :alias at
404 # alias with bad hashref
405 use charnames ":short", ":alias" => { e_ACUTE => "LATIN:e WITH ACUTE", "a_ACUTE" };
406 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
408 Use of uninitialized value
410 # alias with hashref two aliases
411 use charnames ":short", ":alias" => {
412 e_ACUTE => "LATIN:e WITH ACUTE",
415 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
417 Unknown charname '' at
419 # alias with hashref two aliases
420 use charnames ":short", ":alias" => {
421 e_ACUTE => "LATIN:e WITH ACUTE",
422 a_ACUTE => "LATIN:a WITH ACUTE",
424 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
428 # alias with hashref using mixed aliasses
429 use charnames ":short", ":alias" => {
430 e_ACUTE => "LATIN:e WITH ACUTE",
431 a_ACUTE => "LATIN SMALL LETTER A WITH ACUT",
433 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
435 Unknown charname 'LATIN SMALL LETTER A WITH ACUT' at
437 # alias with hashref using mixed aliasses
438 use charnames ":short", ":alias" => {
439 e_ACUTE => "LATIN:e WITH ACUTE",
440 a_ACUTE => "LATIN SMALL LETTER A WITH ACUTE",
442 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
444 Unknown charname 'LATIN SMALL LETTER A WITH ACUTE' at
446 # alias with hashref using mixed aliasses
447 use charnames ":full", ":alias" => {
448 e_ACUTE => "LATIN:e WITH ACUTE",
449 a_ACUTE => "LATIN SMALL LETTER A WITH ACUTE",
451 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
453 Unknown charname 'LATIN:e WITH ACUTE' at
455 # alias with nonexisting file
456 use charnames ":full", ":alias" => "xyzzy";
457 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
459 unicore/xyzzy_alias.pl cannot be used as alias file for charnames at
461 # alias with bad file name
462 use charnames ":full", ":alias" => "xy 7-";
463 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
465 Charnames alias files can only have identifier characters at
467 # alias with non_absolute (existing) file name (which it should /not/ use)
468 use charnames ":full", ":alias" => "perl";
469 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
471 unicore/perl_alias.pl cannot be used as alias file for charnames at
473 # alias with bad file
474 use charnames ":full", ":alias" => "xyzzy";
475 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
480 unicore/xyzzy_alias.pl did not return a \(valid\) list of alias pairs at
482 # alias with file with empty list
483 use charnames ":full", ":alias" => "xyzzy";
484 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
489 Unknown charname 'e_ACUTE' at
491 # alias with file OK but file has :short aliasses
492 use charnames ":full", ":alias" => "xyzzy";
493 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
496 ( e_ACUTE => "LATIN:e WITH ACUTE",
497 a_ACUTE => "LATIN:a WITH ACUTE",
500 Unknown charname 'LATIN:e WITH ACUTE' at
502 # alias with :short and file OK
503 use charnames ":short", ":alias" => "xyzzy";
504 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
507 ( e_ACUTE => "LATIN:e WITH ACUTE",
508 a_ACUTE => "LATIN:a WITH ACUTE",
513 # alias with :short and file OK has :long aliasses
514 use charnames ":short", ":alias" => "xyzzy";
515 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
518 ( e_ACUTE => "LATIN SMALL LETTER E WITH ACUTE",
519 a_ACUTE => "LATIN SMALL LETTER A WITH ACUTE",
522 Unknown charname 'LATIN SMALL LETTER E WITH ACUTE' at
524 # alias with file implicit :full but file has :short aliasses
525 use charnames ":alias" => ":xyzzy";
526 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
529 ( e_ACUTE => "LATIN:e WITH ACUTE",
530 a_ACUTE => "LATIN:a WITH ACUTE",
533 Unknown charname 'LATIN:e WITH ACUTE' at
535 # alias with file implicit :full and file has :long aliasses
536 use charnames ":alias" => ":xyzzy";
537 "Here: \N{e_ACUTE}\N{a_ACUTE}!\n";
540 ( e_ACUTE => "LATIN SMALL LETTER E WITH ACUTE",
541 a_ACUTE => "LATIN SMALL LETTER A WITH ACUTE",