blob: 1eacf466eeff95730d4d466ed127d6e3ea5e562f (
plain)
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
|
#!/usr/bin/perl -w
require 5.002;
$runtests=shift(@ARGV);
if ( -f "t/testfunc.pl" ) {
require "t/testfunc.pl";
$dir="./lib";
$tdir="t";
} elsif ( -f "testfunc.pl" ) {
require "testfunc.pl";
$dir="../lib";
$tdir=".";
} else {
die "ERROR: cannot find testfunc.pl\n";
}
unshift(@INC,$dir);
use Locale::Country;
%type = ( "LOCALE_CODE_ALPHA_2" => LOCALE_CODE_ALPHA_2,
"LOCALE_CODE_ALPHA_3" => LOCALE_CODE_ALPHA_3,
"LOCALE_CODE_NUMERIC" => LOCALE_CODE_NUMERIC,
);
sub test {
my(@test) = @_;
$test[1] = $type{$test[1]} if (@test == 2 && $test[1] && exists $type{$test[1]});
return country2code(@test);
}
$tests = "
kazakhstan
~
kz
kazakstan
~
kz
macao
~
mo
macau
~
mo
~ _undef_
_undef_
~
_undef_
Banana
~
_undef_
japan
~
jp
Japan
~
jp
United States
~
us
United Kingdom
~
gb
Andorra
~
ad
Zimbabwe
~
zw
Iran
~
ir
North Korea
~
kp
South Korea
~
kr
Libya
~
ly
Syria
~
sy
Svalbard
~
_undef_
Jan Mayen
~
_undef_
USA
~
us
United States of America
~
us
Great Britain
~
gb
Burma
~
mm
French Southern and Antarctic Lands
~
tf
Aland Islands
~
ax
Yugoslavia
~
_undef_
Serbia and Montenegro
~
_undef_
East Timor
~
tl
Zaire
~
_undef_
Congo, The Democratic Republic of the
~
cd
Congo, The Democratic Republic of the
LOCALE_CODE_ALPHA_3
~
cod
Congo, The Democratic Republic of the
LOCALE_CODE_NUMERIC
~
180
";
print "country2code...\n";
test_Func(\&test,$tests,$runtests);
1;
# Local Variables:
# mode: cperl
# indent-tabs-mode: nil
# cperl-indent-level: 3
# cperl-continued-statement-offset: 2
# cperl-continued-brace-offset: 0
# cperl-brace-offset: 0
# cperl-brace-imaginary-offset: 0
# cperl-label-offset: -2
# End:
|