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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
BEGIN {
unless ('A' eq pack('U', 0x41)) {
print "1..0 # Unicode::Collate cannot pack a Unicode code point\n";
exit 0;
}
unless (0x41 == unpack('U', 'A')) {
print "1..0 # Unicode::Collate cannot get a Unicode code point\n";
exit 0;
}
if ($ENV{PERL_CORE}) {
chdir('t') if -d 't';
@INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib);
}
}
use strict;
use warnings;
BEGIN { $| = 1; print "1..65\n"; }
my $count = 0;
sub ok ($;$) {
my $p = my $r = shift;
if (@_) {
my $x = shift;
$p = !defined $x ? !defined $r : !defined $r ? 0 : $r eq $x;
}
print $p ? "ok" : "not ok", ' ', ++$count, "\n";
}
use Unicode::Collate;
ok(1);
#########################
##### 2..31
{
my $all_undef_8 = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideCJK => undef,
overrideHangul => undef,
UCA_Version => 8,
);
# All in the Unicode code point order.
# No hangul decomposition.
ok($all_undef_8->lt("\x{1100}", "\x{3402}"));
ok($all_undef_8->lt("\x{3402}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4DFF}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4E00}", "\x{AC00}"));
ok($all_undef_8->gt("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_8->gt("\x{AC00}", "\x{ABFF}"));
# U+ABFF: not assigned
# a hangul syllable is decomposed into jamo.
$all_undef_8->change(overrideHangul => 0);
ok($all_undef_8->lt("\x{1100}", "\x{3402}"));
ok($all_undef_8->lt("\x{3402}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4DFF}", "\x{4E00}"));
ok($all_undef_8->gt("\x{4E00}", "\x{AC00}"));
ok($all_undef_8->eq("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_8->lt("\x{AC00}", "\x{ABFF}"));
# CJK defined < Jamo undefined
$all_undef_8->change(overrideCJK => 0);
ok($all_undef_8->gt("\x{1100}", "\x{3402}"));
ok($all_undef_8->lt("\x{3402}", "\x{4E00}"));
ok($all_undef_8->gt("\x{4DFF}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4E00}", "\x{AC00}"));
ok($all_undef_8->eq("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_8->lt("\x{AC00}", "\x{ABFF}"));
# CJK undefined > Jamo undefined
$all_undef_8->change(overrideCJK => undef);
ok($all_undef_8->lt("\x{1100}", "\x{3402}"));
ok($all_undef_8->lt("\x{3402}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4DFF}", "\x{4E00}"));
ok($all_undef_8->gt("\x{4E00}", "\x{AC00}"));
ok($all_undef_8->eq("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_8->lt("\x{AC00}", "\x{ABFF}"));
$all_undef_8->change(overrideHangul => undef);
ok($all_undef_8->lt("\x{1100}", "\x{3402}"));
ok($all_undef_8->lt("\x{3402}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4DFF}", "\x{4E00}"));
ok($all_undef_8->lt("\x{4E00}", "\x{AC00}"));
ok($all_undef_8->gt("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_8->gt("\x{AC00}", "\x{ABFF}"));
}
##### 32..38
{
my $all_undef_9 = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideCJK => undef,
overrideHangul => undef,
UCA_Version => 9,
);
# CJK Ideo. < CJK ext A/B < Others.
# No hangul decomposition.
ok($all_undef_9->lt("\x{4E00}", "\x{3402}"));
ok($all_undef_9->lt("\x{3402}", "\x{20000}"));
ok($all_undef_9->lt("\x{20000}", "\x{AC00}"));
ok($all_undef_9->gt("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_9->gt("\x{AC00}", "\x{ABFF}"));
# U+ABFF: not assigned
# a hangul syllable is decomposed into jamo.
$all_undef_9->change(overrideHangul => 0);
ok($all_undef_9->eq("\x{AC00}", "\x{1100}\x{1161}"));
ok($all_undef_9->lt("\x{AC00}", "\x{ABFF}"));
}
##### 39..46
{
my $ignoreHangul = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideHangul => sub {()},
entry => 'AE00 ; [.0100.0020.0002.AE00] # Hangul GEUL',
);
# All Hangul Syllables except U+AE00 are ignored.
ok($ignoreHangul->eq("\x{AC00}", ""));
ok($ignoreHangul->lt("\x{AC00}", "\0"));
ok($ignoreHangul->lt("\x{AC00}", "\x{AE00}"));
ok($ignoreHangul->lt("\x{AC00}", "\x{1100}\x{1161}")); # Jamo are not ignored.
ok($ignoreHangul->eq("Pe\x{AC00}rl", "Perl"));
ok($ignoreHangul->lt("Pe\x{AE00}rl", "Perl"));
# 'r' is unassigned.
$ignoreHangul->change(overrideHangul => 0);
ok($ignoreHangul->eq("\x{AC00}", "\x{1100}\x{1161}"));
$ignoreHangul->change(overrideHangul => undef);
ok($ignoreHangul->gt("\x{AC00}", "\x{1100}\x{1161}"));
}
##### 47..51
{
my $undefHangul = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideHangul => sub {
my $u = shift;
return $u == 0xAE00 ? 0x100 : undef;
}
);
# All Hangul Syllables except U+AE00 are undefined.
ok($undefHangul->lt("\x{AE00}", "r"));
ok($undefHangul->gt("\x{AC00}", "r"));
ok($undefHangul->gt("\x{AC00}", "\x{1100}\x{1161}"));
ok($undefHangul->lt("Pe\x{AE00}rl", "Perl")); # 'r' is unassigned.
ok($undefHangul->lt("\x{AC00}", "\x{B000}"));
}
##### 52..55
{
my $undefCJK = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideCJK => sub {
my $u = shift;
return $u == 0x4E00 ? 0x100 : undef;
}
);
# All CJK Ideographs except U+4E00 are undefined.
ok($undefCJK->lt("\x{4E00}", "r"));
ok($undefCJK->lt("\x{5000}", "r")); # still CJK < unassigned
ok($undefCJK->lt("Pe\x{4E00}rl", "Perl"));
ok($undefCJK->lt("\x{5000}", "\x{6000}"));
}
##### 56..60
{
my $cpHangul = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideHangul => sub { shift }
);
ok($cpHangul->lt("\x{AC00}", "\x{AC01}"));
ok($cpHangul->lt("\x{AC01}", "\x{D7A3}"));
ok($cpHangul->lt("\x{D7A3}", "r"));
ok($cpHangul->lt("r", "\x{D7A4}"));
ok($cpHangul->lt("\x{D7A3}", "\x{4E00}"));
}
##### 61..65
{
my $arrayHangul = Unicode::Collate->new(
table => undef,
normalization => undef,
overrideHangul => sub {
my $u = shift;
return [$u, 0x20, 0x2, $u];
}
);
ok($arrayHangul->lt("\x{AC00}", "\x{AC01}"));
ok($arrayHangul->lt("\x{AC01}", "\x{D7A3}"));
ok($arrayHangul->lt("\x{D7A3}", "r"));
ok($arrayHangul->lt("r", "\x{D7A4}"));
ok($arrayHangul->lt("\x{D7A3}", "\x{4E00}"));
}
|