1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
BEGIN {
unless ('A' eq pack('U', 0x41)) {
print "1..0 # Unicode::Normalize cannot pack a Unicode code point\n";
exit 0;
}
unless (0x41 == unpack('U', 'A')) {
print "1..0 # Unicode::Normalize cannot get a Unicode code point\n";
exit 0;
}
}
BEGIN {
if ($ENV{PERL_CORE}) {
chdir('t') if -d 't';
@INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib);
}
}
#########################
use strict;
use warnings;
use Unicode::Normalize qw(:all);
print "1..24\n";
print "ok 1\n";
# if $_ is not NULL-terminated, test may fail.
$_ = compose('abc');
print /c$/ ? "ok" : "not ok", " 2\n";
$_ = decompose('abc');
print /c$/ ? "ok" : "not ok", " 3\n";
$_ = reorder('abc');
print /c$/ ? "ok" : "not ok", " 4\n";
$_ = NFD('abc');
print /c$/ ? "ok" : "not ok", " 5\n";
$_ = NFC('abc');
print /c$/ ? "ok" : "not ok", " 6\n";
$_ = NFKD('abc');
print /c$/ ? "ok" : "not ok", " 7\n";
$_ = NFKC('abc');
print /c$/ ? "ok" : "not ok", " 8\n";
$_ = FCC('abc');
print /c$/ ? "ok" : "not ok", " 9\n";
$_ = decompose("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 10\n";
$_ = decompose("\x{304B}\x{3099}abc");
print /c$/ ? "ok" : "not ok", " 11\n";
$_ = reorder("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 12\n";
$_ = reorder("\x{304B}\x{3099}abc");
print /c$/ ? "ok" : "not ok", " 13\n";
$_ = compose("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 14\n";
$_ = compose("\x{304B}\x{3099}abc");
print /c$/ ? "ok" : "not ok", " 15\n";
$_ = NFD("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 16\n";
$_ = NFC("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 17\n";
$_ = NFKD("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 18\n";
$_ = NFKC("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 19\n";
$_ = FCC("\x{304C}abc");
print /c$/ ? "ok" : "not ok", " 20\n";
$_ = getCanon(0x100);
print s/.$// ? "ok" : "not ok", " 21\n";
$_ = getCompat(0x100);
print s/.$// ? "ok" : "not ok", " 22\n";
$_ = getCanon(0xAC00);
print s/.$// ? "ok" : "not ok", " 23\n";
$_ = getCompat(0xAC00);
print s/.$// ? "ok" : "not ok", " 24\n";
|