This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Setting $_ to multiline glob in @INC filter
[perl5.git] / lib / locale.t
CommitLineData
8ebc5c01 1#!./perl -wT
2
66cbab2c
KW
3# This tests plain 'use locale' and adorned 'use locale ":not_characters"'
4# Because these pragmas are compile time, and I (khw) am trying to test
5# without using 'eval' as much as possible, which might cloud the issue, the
6# crucial parts of the code are duplicated in a block for each pragma.
7
6c2e653d
KW
8# To make a TODO test, add the string 'TODO' to its %test_names value
9
e3a2734b
KW
10binmode STDOUT, ':utf8';
11binmode STDERR, ':utf8';
12
8ebc5c01 13BEGIN {
14 chdir 't' if -d 't';
20822f61 15 @INC = '../lib';
f9cbebe1 16 unshift @INC, '.';
b002077a 17 require Config; import Config;
97a0514d 18 if (!$Config{d_setlocale} || $Config{ccflags} =~ /\bD?NO_LOCALE\b/) {
b002077a
CS
19 print "1..0\n";
20 exit;
21 }
2de3dbcc 22 $| = 1;
8ebc5c01 23}
24
25use strict;
26c1569f 26use feature 'fc';
8ebc5c01 27
26c1569f 28my $debug = 0;
284102e8 29
6d5d702a
KW
30# Certain tests have been shown to be problematical for a few locales. Don't
31# fail them unless at least this percentage of the tested locales fail.
32my $acceptable_fold_failure_percentage = 5;
33
db4b7445
A
34use Dumpvalue;
35
36my $dumper = Dumpvalue->new(
37 tick => qq{"},
38 quoteHighBit => 0,
39 unctrl => "quote"
40 );
6be75cd7 41sub debug {
db4b7445
A
42 return unless $debug;
43 my($mess) = join "", @_;
44 chop $mess;
45 print $dumper->stringify($mess,1), "\n";
6be75cd7
JH
46}
47
48sub debugf {
49 printf @_ if $debug;
50}
51
8ebc5c01 52my $have_setlocale = 0;
53eval {
54 require POSIX;
55 import POSIX ':locale_h';
56 $have_setlocale++;
57};
58
6dead956 59# Visual C's CRT goes silly on strings of the form "en_US.ISO8859-1"
f6c6487a 60# and mingw32 uses said silly CRT
3a2d1764
SH
61# This doesn't seem to be an issue any more, at least on Windows XP,
62# so re-enable the tests for Windows XP onwards.
63my $winxp = ($^O eq 'MSWin32' && defined &Win32::GetOSVersion &&
64 join('.', (Win32::GetOSVersion())[1..2]) >= 5.1);
65$have_setlocale = 0 if ((($^O eq 'MSWin32' && !$winxp) || $^O eq 'NetWare') &&
66 $Config{cc} =~ /^(cl|gcc)/i);
6dead956 67
36a42ae7 68# UWIN seems to loop after taint tests, just skip for now
cd19b65c
JH
69$have_setlocale = 0 if ($^O =~ /^uwin/);
70
9a66ea41 71sub LC_ALL ();
8ebc5c01 72
0e053d1e 73$a = 'abc %';
8ebc5c01 74
c213d471
KW
75my $test_num = 0;
76
8ebc5c01 77sub ok {
c213d471 78 my ($result, $message) = @_;
e3a2734b 79 $message = "" unless defined $message;
8ebc5c01 80
81 print 'not ' unless ($result);
c213d471 82 print "ok " . ++$test_num;
e3a2734b
KW
83 print " $message";
84 print "\n";
8ebc5c01 85}
86
87# First we'll do a lot of taint checking for locales.
88# This is the easiest to test, actually, as any locale,
89# even the default locale will taint under 'use locale'.
90
91sub is_tainted { # hello, camel two.
9f1b1f2d 92 no warnings 'uninitialized' ;
8ebc5c01 93 my $dummy;
ba74571d 94 local $@;
8ebc5c01 95 not eval { $dummy = join("", @_), kill 0; 1 }
96}
97
a9b7c637
KW
98sub check_taint ($;$) {
99 my $message_tail = $_[1] // "";
100 $message_tail = ": $message_tail" if $message_tail;
101 ok is_tainted($_[0]), "verify that is tainted$message_tail";
8ebc5c01 102}
103
a9b7c637
KW
104sub check_taint_not ($;$) {
105 my $message_tail = $_[1] // "";
106 $message_tail = ": $message_tail" if $message_tail;
107 ok((not is_tainted($_[0])), "verify that isn't tainted$message_tail");
8ebc5c01 108}
109
bf3cd0e6
KW
110"\tb\t" =~ /^m?(\s)(.*)\1$/;
111check_taint_not $&, "not tainted outside 'use locale'";
112;
113
8ebc5c01 114use locale; # engage locale and therefore locale taint.
115
36a42ae7 116check_taint_not $a;
8ebc5c01 117
36a42ae7
KW
118check_taint uc($a);
119check_taint "\U$a";
120check_taint ucfirst($a);
121check_taint "\u$a";
122check_taint lc($a);
26c1569f 123check_taint fc($a);
36a42ae7 124check_taint "\L$a";
26c1569f 125check_taint "\F$a";
36a42ae7
KW
126check_taint lcfirst($a);
127check_taint "\l$a";
8ebc5c01 128
36a42ae7
KW
129check_taint_not sprintf('%e', 123.456);
130check_taint_not sprintf('%f', 123.456);
131check_taint_not sprintf('%g', 123.456);
132check_taint_not sprintf('%d', 123.456);
133check_taint_not sprintf('%x', 123.456);
8ebc5c01 134
135$_ = $a; # untaint $_
136
137$_ = uc($a); # taint $_
138
36a42ae7 139check_taint $_;
8ebc5c01 140
141/(\w)/; # taint $&, $`, $', $+, $1.
36a42ae7
KW
142check_taint $&;
143check_taint $`;
144check_taint $';
145check_taint $+;
146check_taint $1;
147check_taint_not $2;
8ebc5c01 148
149/(.)/; # untaint $&, $`, $', $+, $1.
36a42ae7
KW
150check_taint_not $&;
151check_taint_not $`;
152check_taint_not $';
153check_taint_not $+;
154check_taint_not $1;
155check_taint_not $2;
8ebc5c01 156
157/(\W)/; # taint $&, $`, $', $+, $1.
36a42ae7
KW
158check_taint $&;
159check_taint $`;
160check_taint $';
161check_taint $+;
162check_taint $1;
163check_taint_not $2;
8ebc5c01 164
165/(\s)/; # taint $&, $`, $', $+, $1.
36a42ae7
KW
166check_taint $&;
167check_taint $`;
168check_taint $';
169check_taint $+;
170check_taint $1;
171check_taint_not $2;
8ebc5c01 172
173/(\S)/; # taint $&, $`, $', $+, $1.
36a42ae7
KW
174check_taint $&;
175check_taint $`;
176check_taint $';
177check_taint $+;
178check_taint $1;
179check_taint_not $2;
8ebc5c01 180
181$_ = $a; # untaint $_
182
36a42ae7 183check_taint_not $_;
8ebc5c01 184
185/(b)/; # this must not taint
36a42ae7
KW
186check_taint_not $&;
187check_taint_not $`;
188check_taint_not $';
189check_taint_not $+;
190check_taint_not $1;
191check_taint_not $2;
8ebc5c01 192
193$_ = $a; # untaint $_
194
36a42ae7 195check_taint_not $_;
8ebc5c01 196
197$b = uc($a); # taint $b
198s/(.+)/$b/; # this must taint only the $_
199
36a42ae7
KW
200check_taint $_;
201check_taint_not $&;
202check_taint_not $`;
203check_taint_not $';
204check_taint_not $+;
205check_taint_not $1;
206check_taint_not $2;
8ebc5c01 207
208$_ = $a; # untaint $_
209
210s/(.+)/b/; # this must not taint
36a42ae7
KW
211check_taint_not $_;
212check_taint_not $&;
213check_taint_not $`;
214check_taint_not $';
215check_taint_not $+;
216check_taint_not $1;
217check_taint_not $2;
8ebc5c01 218
219$b = $a; # untaint $b
220
221($b = $a) =~ s/\w/$&/;
36a42ae7
KW
222check_taint $b; # $b should be tainted.
223check_taint_not $a; # $a should be not.
8ebc5c01 224
225$_ = $a; # untaint $_
226
227s/(\w)/\l$1/; # this must taint
36a42ae7
KW
228check_taint $_;
229check_taint $&;
230check_taint $`;
231check_taint $';
232check_taint $+;
233check_taint $1;
234check_taint_not $2;
8ebc5c01 235
236$_ = $a; # untaint $_
237
238s/(\w)/\L$1/; # this must taint
36a42ae7
KW
239check_taint $_;
240check_taint $&;
241check_taint $`;
242check_taint $';
243check_taint $+;
244check_taint $1;
245check_taint_not $2;
8ebc5c01 246
247$_ = $a; # untaint $_
248
249s/(\w)/\u$1/; # this must taint
36a42ae7
KW
250check_taint $_;
251check_taint $&;
252check_taint $`;
253check_taint $';
254check_taint $+;
255check_taint $1;
256check_taint_not $2;
8ebc5c01 257
258$_ = $a; # untaint $_
259
260s/(\w)/\U$1/; # this must taint
36a42ae7
KW
261check_taint $_;
262check_taint $&;
263check_taint $`;
264check_taint $';
265check_taint $+;
266check_taint $1;
267check_taint_not $2;
8ebc5c01 268
269# After all this tainting $a should be cool.
270
36a42ae7 271check_taint_not $a;
8ebc5c01 272
66cbab2c
KW
273{ # This is just the previous tests copied here with a different
274 # compile-time pragma.
275
276 use locale ':not_characters'; # engage restricted locale with different
277 # tainting rules
278
279 check_taint_not $a;
280
281 check_taint_not uc($a);
282 check_taint_not "\U$a";
283 check_taint_not ucfirst($a);
284 check_taint_not "\u$a";
285 check_taint_not lc($a);
26c1569f 286 check_taint_not fc($a);
66cbab2c 287 check_taint_not "\L$a";
26c1569f 288 check_taint_not "\F$a";
66cbab2c
KW
289 check_taint_not lcfirst($a);
290 check_taint_not "\l$a";
291
292 check_taint_not sprintf('%e', 123.456);
293 check_taint_not sprintf('%f', 123.456);
294 check_taint_not sprintf('%g', 123.456);
295 check_taint_not sprintf('%d', 123.456);
296 check_taint_not sprintf('%x', 123.456);
297
298 $_ = $a; # untaint $_
299
300 $_ = uc($a); # taint $_
301
302 check_taint_not $_;
303
304 /(\w)/; # taint $&, $`, $', $+, $1.
305 check_taint_not $&;
306 check_taint_not $`;
307 check_taint_not $';
308 check_taint_not $+;
309 check_taint_not $1;
310 check_taint_not $2;
311
312 /(.)/; # untaint $&, $`, $', $+, $1.
313 check_taint_not $&;
314 check_taint_not $`;
315 check_taint_not $';
316 check_taint_not $+;
317 check_taint_not $1;
318 check_taint_not $2;
319
320 /(\W)/; # taint $&, $`, $', $+, $1.
321 check_taint_not $&;
322 check_taint_not $`;
323 check_taint_not $';
324 check_taint_not $+;
325 check_taint_not $1;
326 check_taint_not $2;
327
328 /(\s)/; # taint $&, $`, $', $+, $1.
329 check_taint_not $&;
330 check_taint_not $`;
331 check_taint_not $';
332 check_taint_not $+;
333 check_taint_not $1;
334 check_taint_not $2;
335
336 /(\S)/; # taint $&, $`, $', $+, $1.
337 check_taint_not $&;
338 check_taint_not $`;
339 check_taint_not $';
340 check_taint_not $+;
341 check_taint_not $1;
342 check_taint_not $2;
343
344 $_ = $a; # untaint $_
345
346 check_taint_not $_;
347
348 /(b)/; # this must not taint
349 check_taint_not $&;
350 check_taint_not $`;
351 check_taint_not $';
352 check_taint_not $+;
353 check_taint_not $1;
354 check_taint_not $2;
355
356 $_ = $a; # untaint $_
357
358 check_taint_not $_;
359
360 $b = uc($a); # taint $b
361 s/(.+)/$b/; # this must taint only the $_
362
363 check_taint_not $_;
364 check_taint_not $&;
365 check_taint_not $`;
366 check_taint_not $';
367 check_taint_not $+;
368 check_taint_not $1;
369 check_taint_not $2;
370
371 $_ = $a; # untaint $_
372
373 s/(.+)/b/; # this must not taint
374 check_taint_not $_;
375 check_taint_not $&;
376 check_taint_not $`;
377 check_taint_not $';
378 check_taint_not $+;
379 check_taint_not $1;
380 check_taint_not $2;
381
382 $b = $a; # untaint $b
383
384 ($b = $a) =~ s/\w/$&/;
385 check_taint_not $b; # $b should be tainted.
386 check_taint_not $a; # $a should be not.
387
388 $_ = $a; # untaint $_
389
390 s/(\w)/\l$1/; # this must taint
391 check_taint_not $_;
392 check_taint_not $&;
393 check_taint_not $`;
394 check_taint_not $';
395 check_taint_not $+;
396 check_taint_not $1;
397 check_taint_not $2;
398
399 $_ = $a; # untaint $_
400
401 s/(\w)/\L$1/; # this must taint
402 check_taint_not $_;
403 check_taint_not $&;
404 check_taint_not $`;
405 check_taint_not $';
406 check_taint_not $+;
407 check_taint_not $1;
408 check_taint_not $2;
409
410 $_ = $a; # untaint $_
411
412 s/(\w)/\u$1/; # this must taint
413 check_taint_not $_;
414 check_taint_not $&;
415 check_taint_not $`;
416 check_taint_not $';
417 check_taint_not $+;
418 check_taint_not $1;
419 check_taint_not $2;
420
421 $_ = $a; # untaint $_
422
423 s/(\w)/\U$1/; # this must taint
424 check_taint_not $_;
425 check_taint_not $&;
426 check_taint_not $`;
427 check_taint_not $';
428 check_taint_not $+;
429 check_taint_not $1;
430 check_taint_not $2;
431
432 # After all this tainting $a should be cool.
433
434 check_taint_not $a;
435}
436
437# Here are in scope of 'use locale'
438
8ebc5c01 439# I think we've seen quite enough of taint.
440# Let us do some *real* locale work now,
284102e8 441# unless setlocale() is missing (i.e. minitest).
8ebc5c01 442
fdf053ee
KW
443unless ($have_setlocale) {
444 print "1..$test_num\n";
445 exit;
446}
8ebc5c01 447
6cf0b567 448# The test number before our first setlocale()
66330f13 449my $final_without_setlocale = $test_num;
6cf0b567 450
284102e8
JH
451# Find locales.
452
6be75cd7
JH
453debug "# Scanning for locales...\n";
454
455# Note that it's okay that some languages have their native names
456# capitalized here even though that's not "right". They are lowercased
457# anyway later during the scanning process (and besides, some clueless
98dc9551 458# vendor might have them capitalized erroneously anyway).
6be75cd7 459
284102e8 460my $locales = <<EOF;
6be75cd7 461Afrikaans:af:za:1 15
284102e8 462Arabic:ar:dz eg sa:6 arabic8
6be75cd7
JH
463Brezhoneg Breton:br:fr:1 15
464Bulgarski Bulgarian:bg:bg:5
dd8482fc 465Chinese:zh:cn tw:cn.EUC eucCN eucTW euc.CN euc.TW Big5 GB2312 tw.EUC
6be75cd7
JH
466Hrvatski Croatian:hr:hr:2
467Cymraeg Welsh:cy:cy:1 14 15
284102e8 468Czech:cs:cz:2
df8a53a3 469Dansk Danish:da:dk:1 15
6be75cd7 470Nederlands Dutch:nl:be nl:1 15
dd8482fc 471English American British:en:au ca gb ie nz us uk zw:1 15 cp850
6be75cd7
JH
472Esperanto:eo:eo:3
473Eesti Estonian:et:ee:4 6 13
474Suomi Finnish:fi:fi:1 15
475Flamish::fl:1 15
6be75cd7
JH
476Deutsch German:de:at be ch de lu:1 15
477Euskaraz Basque:eu:es fr:1 15
6be75cd7
JH
478Galego Galician:gl:es:1 15
479Ellada Greek:el:gr:7 g8
6be75cd7
JH
480Frysk:fy:nl:1 15
481Greenlandic:kl:gl:4 6
284102e8
JH
482Hebrew:iw:il:8 hebrew8
483Hungarian:hu:hu:2
df8a53a3 484Indonesian:id:id:1 15
6be75cd7
JH
485Gaeilge Irish:ga:IE:1 14 15
486Italiano Italian:it:ch it:1 15
487Nihongo Japanese:ja:jp:euc eucJP jp.EUC sjis
284102e8 488Korean:ko:kr:
6be75cd7
JH
489Latine Latin:la:va:1 15
490Latvian:lv:lv:4 6 13
491Lithuanian:lt:lt:4 6 13
492Macedonian:mk:mk:1 15
493Maltese:mt:mt:3
dd8482fc 494Moldovan:mo:mo:2
df8a53a3 495Norsk Norwegian:no no\@nynorsk nb nn:no:1 15
6be75cd7
JH
496Occitan:oc:es:1 15
497Polski Polish:pl:pl:2
284102e8 498Rumanian:ro:ro:2
a528dad0 499Russki Russian:ru:ru su ua:5 koi8 koi8r KOI8-R koi8u cp1251 cp866
6be75cd7 500Serbski Serbian:sr:yu:5
284102e8 501Slovak:sk:sk:2
6be75cd7 502Slovene Slovenian:sl:si:2
d43ce814
JH
503Sqhip Albanian:sq:sq:1 15
504Svenska Swedish:sv:fi se:1 15
6be75cd7 505Thai:th:th:11 tis620
284102e8 506Turkish:tr:tr:9 turkish8
dd8482fc 507Yiddish:yi::1 15
284102e8
JH
508EOF
509
ee50adbe 510if ($^O eq 'os390') {
dd8482fc 511 # These cause heartburn. Broken locales?
ee50adbe
PP
512 $locales =~ s/Svenska Swedish:sv:fi se:1 15\n//;
513 $locales =~ s/Thai:th:th:11 tis620\n//;
514}
515
ef4a39e5 516sub in_utf8 () { $^H & 0x08 || (${^OPEN} || "") =~ /:utf8/ }
f9cbebe1
JH
517
518if (in_utf8) {
8a6cb2cb 519 require "lib/locale/utf8";
f9cbebe1 520} else {
8a6cb2cb 521 require "lib/locale/latin1";
f9cbebe1
JH
522}
523
284102e8
JH
524my @Locale;
525my $Locale;
526my @Alnum_;
527
284102e8
JH
528sub trylocale {
529 my $locale = shift;
0b9f254b 530 return if grep { $locale eq $_ } @Locale;
e439cacb
KW
531 return unless setlocale(LC_ALL, $locale);
532 my $badutf8;
533 {
534 local $SIG{__WARN__} = sub {
535 $badutf8 = $_[0] =~ /Malformed UTF-8/;
536 };
537 $Locale =~ /UTF-?8/i;
284102e8 538 }
e439cacb
KW
539
540 if ($badutf8) {
541 ok(0, "Locale name contains malformed utf8");
542 return;
543 }
544 push @Locale, $locale;
284102e8 545}
8ebc5c01 546
284102e8
JH
547sub decode_encodings {
548 my @enc;
8ebc5c01 549
284102e8
JH
550 foreach (split(/ /, shift)) {
551 if (/^(\d+)$/) {
552 push @enc, "ISO8859-$1";
553 push @enc, "iso8859$1"; # HP
554 if ($1 eq '1') {
555 push @enc, "roman8"; # HP
556 }
557 } else {
558 push @enc, $_;
dd8482fc 559 push @enc, "$_.UTF-8";
8ebc5c01 560 }
561 }
ee50adbe
PP
562 if ($^O eq 'os390') {
563 push @enc, qw(IBM-037 IBM-819 IBM-1047);
564 }
8ebc5c01 565
284102e8 566 return @enc;
8ebc5c01 567}
568
284102e8
JH
569trylocale("C");
570trylocale("POSIX");
571foreach (0..15) {
572 trylocale("ISO8859-$_");
284102e8 573 trylocale("iso8859$_");
097ee67d
JH
574 trylocale("iso8859-$_");
575 trylocale("iso_8859_$_");
576 trylocale("isolatin$_");
577 trylocale("isolatin-$_");
578 trylocale("iso_latin_$_");
8ebc5c01 579}
580
645e49ed
JH
581# Sanitize the environment so that we can run the external 'locale'
582# program without the taint mode getting grumpy.
cce5967e
JH
583
584# $ENV{PATH} is special in VMS.
585delete $ENV{PATH} if $^O ne 'VMS' or $Config{d_setenv};
586
587# Other subversive stuff.
588delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
dd8482fc 589
21477fb4 590if (-x "/usr/bin/locale" && open(LOCALES, "/usr/bin/locale -a 2>/dev/null|")) {
dd8482fc 591 while (<LOCALES>) {
d281a6ac
NC
592 # It seems that /usr/bin/locale steadfastly outputs 8 bit data, which
593 # ain't great when we're running this testPERL_UNICODE= so that utf8
594 # locales will cause all IO hadles to default to (assume) utf8
595 next unless utf8::valid($_);
dd8482fc
JH
596 chomp;
597 trylocale($_);
284102e8 598 }
dd8482fc 599 close(LOCALES);
a6259068 600} elsif ($^O eq 'VMS' && defined($ENV{'SYS$I18N_LOCALE'}) && -d 'SYS$I18N_LOCALE') {
71e5cbb3 601# The SYS$I18N_LOCALE logical name search list was not present on
a6259068
PP
602# VAX VMS V5.5-12, but was on AXP && VAX VMS V6.2 as well as later versions.
603 opendir(LOCALES, "SYS\$I18N_LOCALE:");
604 while ($_ = readdir(LOCALES)) {
605 chomp;
606 trylocale($_);
607 }
608 close(LOCALES);
87e33296
SP
609} elsif ($^O eq 'openbsd' && -e '/usr/share/locale') {
610
611 # OpenBSD doesn't have a locale executable, so reading /usr/share/locale
612 # is much easier and faster than the last resort method.
613
614 opendir(LOCALES, '/usr/share/locale');
615 while ($_ = readdir(LOCALES)) {
616 chomp;
617 trylocale($_);
618 }
619 close(LOCALES);
dd8482fc
JH
620} else {
621
622 # This is going to be slow.
623
624 foreach my $locale (split(/\n/, $locales)) {
625 my ($locale_name, $language_codes, $country_codes, $encodings) =
626 split(/:/, $locale);
627 my @enc = decode_encodings($encodings);
628 foreach my $loc (split(/ /, $locale_name)) {
629 trylocale($loc);
284102e8 630 foreach my $enc (@enc) {
dd8482fc 631 trylocale("$loc.$enc");
284102e8 632 }
dd8482fc 633 $loc = lc $loc;
284102e8 634 foreach my $enc (@enc) {
dd8482fc
JH
635 trylocale("$loc.$enc");
636 }
637 }
638 foreach my $lang (split(/ /, $language_codes)) {
639 trylocale($lang);
640 foreach my $country (split(/ /, $country_codes)) {
641 my $lc = "${lang}_${country}";
642 trylocale($lc);
643 foreach my $enc (@enc) {
644 trylocale("$lc.$enc");
645 }
646 my $lC = "${lang}_\U${country}";
647 trylocale($lC);
648 foreach my $enc (@enc) {
649 trylocale("$lC.$enc");
650 }
284102e8
JH
651 }
652 }
653 }
654}
4599a1de 655
d43ce814
JH
656setlocale(LC_ALL, "C");
657
86f50d7d 658if ($^O eq 'darwin') {
4373e181 659 # Darwin 8/Mac OS X 10.4 and 10.5 have bad Basque locales: perl bug #35895,
86f50d7d 660 # Apple bug ID# 4139653. It also has a problem in Byelorussian.
4373e181
RGS
661 (my $v) = $Config{osvers} =~ /^(\d+)/;
662 if ($v >= 8 and $v < 10) {
86f50d7d 663 debug "# Skipping eu_ES, be_BY locales -- buggy in Darwin\n";
a5ec937f 664 @Locale = grep ! m/^(eu_ES(?:\..*)?|be_BY\.CP1131)$/, @Locale;
dfa5c78f 665 } elsif ($v < 12) {
a44d0896
NC
666 debug "# Skipping be_BY locales -- buggy in Darwin\n";
667 @Locale = grep ! m/^be_BY\.CP1131$/, @Locale;
a5ec937f 668 }
86f50d7d
DD
669}
670
4599a1de
JH
671@Locale = sort @Locale;
672
887ef7ed
PP
673debug "# Locales =\n";
674for ( @Locale ) {
675 debug "# $_\n";
676}
8ebc5c01 677
284102e8 678my %Problem;
2a680da6
JH
679my %Okay;
680my %Testing;
9445c837 681my @Neoalpha; # Alnums that aren't in the C locale.
c08acc4c 682my %test_names;
284102e8 683
2a680da6 684sub tryneoalpha {
15bbd6a2
KW
685 my ($Locale, $i, $test, $message) = @_;
686 $message //= "";
687 $message = " ($message)" if $message;
2a680da6
JH
688 unless ($test) {
689 $Problem{$i}{$Locale} = 1;
15bbd6a2 690 debug "# failed $i with locale '$Locale'$message\n";
2a680da6
JH
691 } else {
692 push @{$Okay{$i}}, $Locale;
693 }
694}
695
c4093d7d
KW
696my $first_locales_test_number = $final_without_setlocale + 1;
697my $locales_test_number;
698my $not_necessarily_a_problem_test_number;
6d5d702a
KW
699my $first_casing_test_number;
700my $final_casing_test_number;
c4093d7d
KW
701my %setlocale_failed; # List of locales that setlocale() didn't work on
702
284102e8 703foreach $Locale (@Locale) {
c4093d7d 704 $locales_test_number = $first_locales_test_number - 1;
284102e8 705 debug "# Locale = $Locale\n";
284102e8
JH
706
707 unless (setlocale(LC_ALL, $Locale)) {
c4093d7d 708 $setlocale_failed{$Locale} = $Locale;
284102e8 709 next;
8ebc5c01 710 }
8ebc5c01 711
66cbab2c
KW
712 # We test UTF-8 locales only under ':not_characters'; otherwise they have
713 # documented deficiencies. Non- UTF-8 locales are tested only under plain
714 # 'use locale', as otherwise we would have to convert everything in them
715 # to Unicode.
716 my $is_utf8_locale = $Locale =~ /UTF-?8/i;
717
718 my %UPPER = ();
719 my %lower = ();
720 my %BoThCaSe = ();
721
722 if (! $is_utf8_locale) {
723 use locale;
71e5cbb3 724 @Alnum_ = sort grep /\w/, map { chr } 0..255;
f07538a5 725
71e5cbb3 726 debug "# w = ", join("",@Alnum_), "\n";
e5272a46 727
71e5cbb3
KW
728 # Sieve the uppercase and the lowercase.
729
730 for (@Alnum_) {
731 if (/[^\d_]/) { # skip digits and the _
732 if (uc($_) eq $_) {
733 $UPPER{$_} = $_;
734 }
735 if (lc($_) eq $_) {
736 $lower{$_} = $_;
737 }
738 }
739 }
66cbab2c
KW
740 }
741 else {
742 use locale ':not_characters';
743 @Alnum_ = sort grep /\w/, map { chr } 0..255;
744 debug "# w = ", join("",@Alnum_), "\n";
745 for (@Alnum_) {
746 if (/[^\d_]/) { # skip digits and the _
747 if (uc($_) eq $_) {
748 $UPPER{$_} = $_;
749 }
750 if (lc($_) eq $_) {
751 $lower{$_} = $_;
752 }
753 }
754 }
755 }
284102e8 756 foreach (keys %UPPER) {
097ee67d 757 $BoThCaSe{$_}++ if exists $lower{$_};
284102e8
JH
758 }
759 foreach (keys %lower) {
097ee67d 760 $BoThCaSe{$_}++ if exists $UPPER{$_};
284102e8 761 }
097ee67d 762 foreach (keys %BoThCaSe) {
284102e8
JH
763 delete $UPPER{$_};
764 delete $lower{$_};
765 }
766
db4b7445
A
767 debug "# UPPER = ", join("", sort keys %UPPER ), "\n";
768 debug "# lower = ", join("", sort keys %lower ), "\n";
769 debug "# BoThCaSe = ", join("", sort keys %BoThCaSe), "\n";
284102e8 770
baa71cfd 771 my @failures;
3da38613 772 my @fold_failures;
baa71cfd
KW
773 foreach my $x (sort keys %UPPER) {
774 my $ok;
3da38613 775 my $fold_ok;
baa71cfd
KW
776 if ($is_utf8_locale) {
777 use locale ':not_characters';
778 $ok = $x =~ /[[:upper:]]/;
3da38613 779 $fold_ok = $x =~ /[[:lower:]]/i;
baa71cfd
KW
780 }
781 else {
782 use locale;
783 $ok = $x =~ /[[:upper:]]/;
3da38613 784 $fold_ok = $x =~ /[[:lower:]]/i;
baa71cfd
KW
785 }
786 push @failures, $x unless $ok;
3da38613 787 push @fold_failures, $x unless $fold_ok;
baa71cfd
KW
788 }
789 my $message = "";
790 $locales_test_number++;
6d5d702a 791 $first_casing_test_number = $locales_test_number;
baa71cfd
KW
792 $test_names{$locales_test_number} = 'Verify that /[[:upper:]]/ matches sieved uppercase characters.';
793 $message = 'Failed for ' . join ", ", @failures if @failures;
794 tryneoalpha($Locale, $locales_test_number, scalar @failures == 0, $message);
6d5d702a 795
3da38613
KW
796 $message = "";
797 $locales_test_number++;
6d5d702a 798
3dd9aa8b 799 $test_names{$locales_test_number} = 'Verify that /[[:lower:]]/i matches sieved uppercase characters.';
3da38613
KW
800 $message = 'Failed for ' . join ", ", @fold_failures if @fold_failures;
801 tryneoalpha($Locale, $locales_test_number, scalar @fold_failures == 0, $message);
baa71cfd
KW
802
803 $message = "";
804 undef @failures;
3da38613 805 undef @fold_failures;
baa71cfd
KW
806
807 foreach my $x (sort keys %lower) {
808 my $ok;
3da38613 809 my $fold_ok;
baa71cfd
KW
810 if ($is_utf8_locale) {
811 use locale ':not_characters';
812 $ok = $x =~ /[[:lower:]]/;
3da38613 813 $fold_ok = $x =~ /[[:upper:]]/i;
baa71cfd
KW
814 }
815 else {
816 use locale;
817 $ok = $x =~ /[[:lower:]]/;
3da38613 818 $fold_ok = $x =~ /[[:upper:]]/i;
baa71cfd
KW
819 }
820 push @failures, $x unless $ok;
3da38613 821 push @fold_failures, $x unless $fold_ok;
baa71cfd
KW
822 }
823
824 $locales_test_number++;
825 $test_names{$locales_test_number} = 'Verify that /[[:lower:]]/ matches sieved lowercase characters.';
826 $message = 'Failed for ' . join ", ", @failures if @failures;
827 tryneoalpha($Locale, $locales_test_number, scalar @failures == 0, $message);
828 $message = "";
3da38613 829 $locales_test_number++;
6d5d702a 830 $final_casing_test_number = $locales_test_number;
3dd9aa8b
KW
831 $test_names{$locales_test_number} = 'Verify that /[[:upper:]]/i matches sieved lowercase characters.';
832 $message = 'Failed for ' . join ", ", @fold_failures if @fold_failures;
3da38613 833 tryneoalpha($Locale, $locales_test_number, scalar @fold_failures == 0, $message);
baa71cfd 834
9445c837
KW
835 { # Find the alphabetic characters that are not considered alphabetics
836 # in the default (C) locale.
8ebc5c01 837
284102e8 838 no locale;
71e5cbb3 839
284102e8
JH
840 @Neoalpha = ();
841 for (keys %UPPER, keys %lower) {
842 push(@Neoalpha, $_) if (/\W/);
843 }
8ebc5c01 844 }
8ebc5c01 845
284102e8 846 @Neoalpha = sort @Neoalpha;
8ebc5c01 847
db4b7445 848 debug "# Neoalpha = ", join("",@Neoalpha), "\n";
8ebc5c01 849
871d8451
KW
850 my $first_Neoalpha_test_number = $locales_test_number + 1;
851 my $final_Neoalpha_test_number = $first_Neoalpha_test_number + 3;
284102e8
JH
852 if (@Neoalpha == 0) {
853 # If we have no Neoalphas the remaining tests are no-ops.
871d8451 854 debug "# no Neoalpha, skipping tests $first_Neoalpha_test_number..$final_Neoalpha_test_number for locale '$Locale'\n";
c4093d7d 855 foreach ($locales_test_number+1..$final_Neoalpha_test_number) {
a88c3d7c 856 push @{$Okay{$_}}, $Locale;
c4093d7d 857 $locales_test_number++;
a88c3d7c 858 }
6be75cd7 859 } else {
8ebc5c01 860
6be75cd7 861 # Test \w.
71e5cbb3 862
ef4a39e5 863 my $word = join('', @Neoalpha);
8ebc5c01 864
c4093d7d 865 ++$locales_test_number;
c08acc4c 866 $test_names{$locales_test_number} = 'Verify that alnums outside the C locale match \w';
66cbab2c
KW
867 my $ok;
868 if ($is_utf8_locale) {
869 use locale ':not_characters';
870 $ok = $word =~ /^(\w+)$/;
871 }
872 else {
873 # Already in 'use locale'; this tests that exiting scopes works
874 $ok = $word =~ /^(\w+)$/;
875 }
876 tryneoalpha($Locale, $locales_test_number, $ok);
ef4a39e5 877
2a680da6 878 # Cross-check the whole 8-bit character set.
8ebc5c01 879
c4093d7d 880 ++$locales_test_number;
c08acc4c 881 $test_names{$locales_test_number} = 'Verify that \w and \W are mutually exclusive, as are \d, \D; \s, \S';
6be75cd7 882 for (map { chr } 0..255) {
66cbab2c
KW
883 if ($is_utf8_locale) {
884 use locale ':not_characters';
885 $ok = (/\w/ xor /\W/) ||
886 (/\d/ xor /\D/) ||
887 (/\s/ xor /\S/);
888 }
889 else {
890 $ok = (/\w/ xor /\W/) ||
2a680da6 891 (/\d/ xor /\D/) ||
66cbab2c
KW
892 (/\s/ xor /\S/);
893 }
894 tryneoalpha($Locale, $locales_test_number, $ok);
284102e8 895 }
8ebc5c01 896
6be75cd7 897 # Test for read-only scalars' locale vs non-locale comparisons.
284102e8 898
284102e8 899 {
6be75cd7
JH
900 no locale;
901 $a = "qwerty";
66cbab2c
KW
902 if ($is_utf8_locale) {
903 use locale ':not_characters';
904 $ok = ($a cmp "qwerty") == 0;
905 }
906 else {
907 use locale;
908 $ok = ($a cmp "qwerty") == 0;
909 }
910 tryneoalpha($Locale, ++$locales_test_number, $ok);
911 $test_names{$locales_test_number} = 'Verify that cmp works with a read-only scalar; no- vs locale';
8ebc5c01 912 }
8ebc5c01 913
6be75cd7
JH
914 {
915 my ($from, $to, $lesser, $greater,
916 @test, %test, $test, $yes, $no, $sign);
917
c4093d7d 918 ++$locales_test_number;
c08acc4c 919 $test_names{$locales_test_number} = 'Verify that "le", "ne", etc work';
c4093d7d 920 $not_necessarily_a_problem_test_number = $locales_test_number;
6be75cd7
JH
921 for (0..9) {
922 # Select a slice.
923 $from = int(($_*@Alnum_)/10);
924 $to = $from + int(@Alnum_/10);
925 $to = $#Alnum_ if ($to > $#Alnum_);
926 $lesser = join('', @Alnum_[$from..$to]);
927 # Select a slice one character on.
928 $from++; $to++;
929 $to = $#Alnum_ if ($to > $#Alnum_);
930 $greater = join('', @Alnum_[$from..$to]);
66cbab2c
KW
931 if ($is_utf8_locale) {
932 use locale ':not_characters';
933 ($yes, $no, $sign) = ($lesser lt $greater
934 ? (" ", "not ", 1)
935 : ("not ", " ", -1));
936 }
937 else {
938 use locale;
71e5cbb3 939 ($yes, $no, $sign) = ($lesser lt $greater
6be75cd7
JH
940 ? (" ", "not ", 1)
941 : ("not ", " ", -1));
66cbab2c 942 }
6be75cd7
JH
943 # all these tests should FAIL (return 0).
944 # Exact lt or gt cannot be tested because
945 # in some locales, say, eacute and E may test equal.
71e5cbb3 946 @test =
6be75cd7
JH
947 (
948 $no.' ($lesser le $greater)', # 1
949 'not ($lesser ne $greater)', # 2
950 ' ($lesser eq $greater)', # 3
951 $yes.' ($lesser ge $greater)', # 4
952 $yes.' ($lesser ge $greater)', # 5
953 $yes.' ($greater le $lesser )', # 7
954 'not ($greater ne $lesser )', # 8
955 ' ($greater eq $lesser )', # 9
956 $no.' ($greater ge $lesser )', # 10
0e053d1e 957 'not (($lesser cmp $greater) == -($sign))' # 11
6be75cd7
JH
958 );
959 @test{@test} = 0 x @test;
960 $test = 0;
284102e8 961 for my $ti (@test) {
66cbab2c
KW
962 if ($is_utf8_locale) {
963 use locale ':not_characters';
964 $test{$ti} = eval $ti;
965 }
966 else {
967 # Already in 'use locale';
71e5cbb3 968 $test{$ti} = eval $ti;
66cbab2c 969 }
6be75cd7 970 $test ||= $test{$ti}
284102e8 971 }
c4093d7d 972 tryneoalpha($Locale, $locales_test_number, $test == 0);
6be75cd7 973 if ($test) {
6be75cd7
JH
974 debug "# lesser = '$lesser'\n";
975 debug "# greater = '$greater'\n";
976 debug "# lesser cmp greater = ",
977 $lesser cmp $greater, "\n";
978 debug "# greater cmp lesser = ",
979 $greater cmp $lesser, "\n";
980 debug "# (greater) from = $from, to = $to\n";
981 for my $ti (@test) {
982 debugf("# %-40s %-4s", $ti,
983 $test{$ti} ? 'FAIL' : 'ok');
984 if ($ti =~ /\(\.*(\$.+ +cmp +\$[^\)]+)\.*\)/) {
985 debugf("(%s == %4d)", $1, eval $1);
986 }
987 debug "\n#";
988 }
284102e8 989
6be75cd7
JH
990 last;
991 }
284102e8 992 }
8ebc5c01 993 }
994 }
6be75cd7 995
c4093d7d
KW
996 if ($locales_test_number != $final_Neoalpha_test_number) {
997 die("The delta for \$final_Neoalpha needs to be updated from "
998 . ($final_Neoalpha_test_number - $first_Neoalpha_test_number)
999 . " to "
1000 . ($locales_test_number - $first_Neoalpha_test_number)
1001 );
1002 }
1003
66cbab2c
KW
1004 my $ok1;
1005 my $ok2;
1006 my $ok3;
1007 my $ok4;
1008 my $ok5;
1009 my $ok6;
1010 my $ok7;
1011 my $ok8;
1012 my $ok9;
1013 my $ok10;
1014 my $ok11;
1015 my $ok12;
1016 my $ok13;
1500bd91 1017 my $ok14;
28acfe03
KW
1018 my $ok15;
1019 my $ok16;
66cbab2c
KW
1020
1021 my $c;
1022 my $d;
1023 my $e;
1024 my $f;
1025 my $g;
1026
1027 if (! $is_utf8_locale) {
71e5cbb3 1028 use locale;
6be75cd7 1029
71e5cbb3 1030 my ($x, $y) = (1.23, 1.23);
6be75cd7 1031
71e5cbb3
KW
1032 $a = "$x";
1033 printf ''; # printf used to reset locale to "C"
1034 $b = "$y";
1035 $ok1 = $a eq $b;
6be75cd7 1036
71e5cbb3
KW
1037 $c = "$x";
1038 my $z = sprintf ''; # sprintf used to reset locale to "C"
1039 $d = "$y";
1040 $ok2 = $c eq $d;
1041 {
66cbab2c 1042
71e5cbb3
KW
1043 use warnings;
1044 my $w = 0;
1045 local $SIG{__WARN__} =
1046 sub {
1047 print "# @_\n";
1048 $w++;
1049 };
6be75cd7 1050
71e5cbb3
KW
1051 # The == (among other ops) used to warn for locales
1052 # that had something else than "." as the radix character.
6be75cd7 1053
71e5cbb3
KW
1054 $ok3 = $c == 1.23;
1055 $ok4 = $c == $x;
1056 $ok5 = $c == $d;
1057 {
1058 no locale;
66cbab2c 1059
b79536ea 1060 $e = "$x";
71e5cbb3
KW
1061
1062 $ok6 = $e == 1.23;
1063 $ok7 = $e == $x;
1064 $ok8 = $e == $c;
1065 }
66cbab2c 1066
71e5cbb3
KW
1067 $f = "1.23";
1068 $g = 2.34;
66cbab2c 1069
71e5cbb3
KW
1070 $ok9 = $f == 1.23;
1071 $ok10 = $f == $x;
1072 $ok11 = $f == $c;
1073 $ok12 = abs(($f + $g) - 3.57) < 0.01;
1074 $ok13 = $w == 0;
28acfe03 1075 $ok14 = $ok15 = $ok16 = 1; # Skip for non-utf8 locales
71e5cbb3 1076 }
66cbab2c
KW
1077 }
1078 else {
1079 use locale ':not_characters';
1080
1081 my ($x, $y) = (1.23, 1.23);
1082 $a = "$x";
1083 printf ''; # printf used to reset locale to "C"
1084 $b = "$y";
1085 $ok1 = $a eq $b;
1086
1087 $c = "$x";
1088 my $z = sprintf ''; # sprintf used to reset locale to "C"
1089 $d = "$y";
1090 $ok2 = $c eq $d;
1091 {
1092 use warnings;
1093 my $w = 0;
1094 local $SIG{__WARN__} =
1095 sub {
1096 print "# @_\n";
1097 $w++;
1098 };
1099 $ok3 = $c == 1.23;
1100 $ok4 = $c == $x;
1101 $ok5 = $c == $d;
1102 {
1103 no locale;
b79536ea 1104 $e = "$x";
66cbab2c
KW
1105
1106 $ok6 = $e == 1.23;
1107 $ok7 = $e == $x;
1108 $ok8 = $e == $c;
1109 }
1110
1111 $f = "1.23";
1112 $g = 2.34;
1113
1114 $ok9 = $f == 1.23;
1115 $ok10 = $f == $x;
1116 $ok11 = $f == $c;
1117 $ok12 = abs(($f + $g) - 3.57) < 0.01;
1118 $ok13 = $w == 0;
1500bd91
KW
1119
1120 # Look for non-ASCII error messages, and verify that the first
1121 # such is in UTF-8 (the others almost certainly will be like the
1122 # first).
1123 $ok14 = 1;
1124 foreach my $err (keys %!) {
1125 use Errno;
1126 $! = eval "&Errno::$err"; # Convert to strerror() output
1127 my $strerror = "$!";
1128 if ("$strerror" =~ /\P{ASCII}/) {
1129 my $utf8_strerror = $strerror;
1130 utf8::upgrade($utf8_strerror);
1131
1132 # If $! was already in UTF-8, the upgrade was a no-op;
1133 # otherwise they will be different byte strings.
1134 use bytes;
1135 $ok14 = $utf8_strerror eq $strerror;
1136 last;
1137 }
1138 }
28acfe03
KW
1139
1140 # Similarly, we verify that a non-ASCII radix is in UTF-8. This
1141 # also catches if there is a disparity between sprintf and
1142 # stringification.
1143
1144 my $string_g = "$g";
1145
1146 my $utf8_string_g = "$g";
1147 utf8::upgrade($utf8_string_g);
1148
1149 my $utf8_sprintf_g = sprintf("%g", $g);
1150 utf8::upgrade($utf8_sprintf_g);
1151 use bytes;
1152 $ok15 = $utf8_string_g eq $string_g;
1153 $ok16 = $utf8_sprintf_g eq $string_g;
66cbab2c
KW
1154 }
1155 }
1156
1157 tryneoalpha($Locale, ++$locales_test_number, $ok1);
1158 $test_names{$locales_test_number} = 'Verify that an intervening printf doesn\'t change assignment results';
1159 my $first_a_test = $locales_test_number;
1160
1161 debug "# $first_a_test..$locales_test_number: \$a = $a, \$b = $b, Locale = $Locale\n";
1162
1163 tryneoalpha($Locale, ++$locales_test_number, $ok2);
1164 $test_names{$locales_test_number} = 'Verify that an intervening sprintf doesn\'t change assignment results';
1165
1166 my $first_c_test = $locales_test_number;
1167
71e5cbb3
KW
1168 tryneoalpha($Locale, ++$locales_test_number, $ok3);
1169 $test_names{$locales_test_number} = 'Verify that a different locale radix works when doing "==" with a constant';
6be75cd7 1170
71e5cbb3
KW
1171 tryneoalpha($Locale, ++$locales_test_number, $ok4);
1172 $test_names{$locales_test_number} = 'Verify that a different locale radix works when doing "==" with a scalar';
66cbab2c 1173
71e5cbb3
KW
1174 tryneoalpha($Locale, ++$locales_test_number, $ok5);
1175 $test_names{$locales_test_number} = 'Verify that a different locale radix works when doing "==" with a scalar and an intervening sprintf';
66cbab2c 1176
71e5cbb3 1177 debug "# $first_c_test..$locales_test_number: \$c = $c, \$d = $d, Locale = $Locale\n";
66cbab2c 1178
71e5cbb3 1179 tryneoalpha($Locale, ++$locales_test_number, $ok6);
b79536ea 1180 $test_names{$locales_test_number} = 'Verify that can assign stringified under inner no-locale block';
71e5cbb3 1181 my $first_e_test = $locales_test_number;
6be75cd7 1182
71e5cbb3
KW
1183 tryneoalpha($Locale, ++$locales_test_number, $ok7);
1184 $test_names{$locales_test_number} = 'Verify that "==" with a scalar still works in inner no locale';
66cbab2c 1185
71e5cbb3
KW
1186 tryneoalpha($Locale, ++$locales_test_number, $ok8);
1187 $test_names{$locales_test_number} = 'Verify that "==" with a scalar and an intervening sprintf still works in inner no locale';
c4093d7d 1188
71e5cbb3 1189 debug "# $first_e_test..$locales_test_number: \$e = $e, no locale\n";
2a680da6 1190
71e5cbb3
KW
1191 tryneoalpha($Locale, ++$locales_test_number, $ok9);
1192 $test_names{$locales_test_number} = 'Verify that after a no-locale block, a different locale radix still works when doing "==" with a constant';
1193 my $first_f_test = $locales_test_number;
6be75cd7 1194
71e5cbb3
KW
1195 tryneoalpha($Locale, ++$locales_test_number, $ok10);
1196 $test_names{$locales_test_number} = 'Verify that after a no-locale block, a different locale radix still works when doing "==" with a scalar';
66cbab2c 1197
71e5cbb3
KW
1198 tryneoalpha($Locale, ++$locales_test_number, $ok11);
1199 $test_names{$locales_test_number} = 'Verify that after a no-locale block, a different locale radix still works when doing "==" with a scalar and an intervening sprintf';
906f284f 1200
71e5cbb3
KW
1201 tryneoalpha($Locale, ++$locales_test_number, $ok12);
1202 $test_names{$locales_test_number} = 'Verify that after a no-locale block, a different locale radix can participate in an addition and function call as numeric';
c4093d7d 1203
71e5cbb3
KW
1204 tryneoalpha($Locale, ++$locales_test_number, $ok13);
1205 $test_names{$locales_test_number} = 'Verify that don\'t get warning under "==" even if radix is not a dot';
c4093d7d 1206
1500bd91
KW
1207 tryneoalpha($Locale, ++$locales_test_number, $ok14);
1208 $test_names{$locales_test_number} = 'Verify that non-ASCII UTF-8 error messages are in UTF-8';
1209
28acfe03
KW
1210 tryneoalpha($Locale, ++$locales_test_number, $ok15);
1211 $test_names{$locales_test_number} = 'Verify that a number with a UTF-8 radix has a UTF-8 stringification';
1212
1213 tryneoalpha($Locale, ++$locales_test_number, $ok16);
1214 $test_names{$locales_test_number} = 'Verify that a sprintf of a number with a UTF-8 radix yields UTF-8';
1215
71e5cbb3 1216 debug "# $first_f_test..$locales_test_number: \$f = $f, \$g = $g, back to locale = $Locale\n";
906f284f 1217
26d80d95
LC
1218 # Does taking lc separately differ from taking
1219 # the lc "in-line"? (This was the bug 19990704.002, change #3568.)
1220 # The bug was in the caching of the 'o'-magic.
66cbab2c 1221 if (! $is_utf8_locale) {
2a680da6 1222 use locale;
6be75cd7 1223
2a680da6
JH
1224 sub lcA {
1225 my $lc0 = lc $_[0];
1226 my $lc1 = lc $_[1];
1227 return $lc0 cmp $lc1;
1228 }
6be75cd7 1229
2a680da6
JH
1230 sub lcB {
1231 return lc($_[0]) cmp lc($_[1]);
1232 }
6be75cd7 1233
2a680da6
JH
1234 my $x = "ab";
1235 my $y = "aa";
1236 my $z = "AB";
6be75cd7 1237
c4093d7d 1238 tryneoalpha($Locale, ++$locales_test_number,
2a680da6
JH
1239 lcA($x, $y) == 1 && lcB($x, $y) == 1 ||
1240 lcA($x, $z) == 0 && lcB($x, $z) == 0);
6be75cd7 1241 }
66cbab2c
KW
1242 else {
1243 use locale ':not_characters';
1244
1245 sub lcC {
1246 my $lc0 = lc $_[0];
1247 my $lc1 = lc $_[1];
1248 return $lc0 cmp $lc1;
1249 }
1250
1251 sub lcD {
1252 return lc($_[0]) cmp lc($_[1]);
1253 }
1254
1255 my $x = "ab";
1256 my $y = "aa";
1257 my $z = "AB";
1258
1259 tryneoalpha($Locale, ++$locales_test_number,
1260 lcC($x, $y) == 1 && lcD($x, $y) == 1 ||
1261 lcC($x, $z) == 0 && lcD($x, $z) == 0);
1262 }
1263 $test_names{$locales_test_number} = 'Verify "lc(foo) cmp lc(bar)" is the same as using intermediaries for the cmp';
d8093b23 1264
26d80d95
LC
1265 # Does lc of an UPPER (if different from the UPPER) match
1266 # case-insensitively the UPPER, and does the UPPER match
1267 # case-insensitively the lc of the UPPER. And vice versa.
3ba0e062 1268 {
ef4a39e5
JH
1269 use locale;
1270 no utf8;
1271 my $re = qr/[\[\(\{\*\+\?\|\^\$\\]/;
1272
1273 my @f = ();
c4093d7d 1274 ++$locales_test_number;
c08acc4c 1275 $test_names{$locales_test_number} = 'Verify case insensitive matching works';
f78d9f29 1276 foreach my $x (sort keys %UPPER) {
66cbab2c 1277 if (! $is_utf8_locale) {
71e5cbb3
KW
1278 my $y = lc $x;
1279 next unless uc $y eq $x;
1280 print "# UPPER $x lc $y ",
faf0c248
KW
1281 $x =~ /$y/i ? 1 : 0, " ",
1282 $y =~ /$x/i ? 1 : 0, "\n" if 0;
71e5cbb3
KW
1283 #
1284 # If $x and $y contain regular expression characters
1285 # AND THEY lowercase (/i) to regular expression characters,
1286 # regcomp() will be mightily confused. No, the \Q doesn't
1287 # help here (maybe regex engine internal lowercasing
1288 # is done after the \Q?) An example of this happening is
1289 # the bg_BG (Bulgarian) locale under EBCDIC (OS/390 USS):
1290 # the chr(173) (the "[") is the lowercase of the chr(235).
1291 #
1292 # Similarly losing EBCDIC locales include cs_cz, cs_CZ,
1293 # el_gr, el_GR, en_us.IBM-037 (!), en_US.IBM-037 (!),
1294 # et_ee, et_EE, hr_hr, hr_HR, hu_hu, hu_HU, lt_LT,
1295 # mk_mk, mk_MK, nl_nl.IBM-037, nl_NL.IBM-037,
1296 # pl_pl, pl_PL, ro_ro, ro_RO, ru_ru, ru_RU,
1297 # sk_sk, sk_SK, sl_si, sl_SI, tr_tr, tr_TR.
1298 #
1299 # Similar things can happen even under (bastardised)
1300 # non-EBCDIC locales: in many European countries before the
1301 # advent of ISO 8859-x nationally customised versions of
1302 # ISO 646 were devised, reusing certain punctuation
1303 # characters for modified characters needed by the
1304 # country/language. For example, the "|" might have
1305 # stood for U+00F6 or LATIN SMALL LETTER O WITH DIAERESIS.
1306 #
1307 if ($x =~ $re || $y =~ $re) {
1308 print "# Regex characters in '$x' or '$y', skipping test $locales_test_number for locale '$Locale'\n";
1309 next;
1310 }
1311 # With utf8 both will fail since the locale concept
1312 # of upper/lower does not work well in Unicode.
1313 push @f, $x unless $x =~ /$y/i == $y =~ /$x/i;
26c1569f
KW
1314
1315 # fc is not a locale concept, so Perl uses lc for it.
1316 push @f, $x unless lc $x eq fc $x;
66cbab2c
KW
1317 }
1318 else {
1319 use locale ':not_characters';
1320 my $y = lc $x;
1321 next unless uc $y eq $x;
1322 print "# UPPER $x lc $y ",
faf0c248
KW
1323 $x =~ /$y/i ? 1 : 0, " ",
1324 $y =~ /$x/i ? 1 : 0, "\n" if 0;
66cbab2c
KW
1325
1326 # Here, we can fully test things, unlike plain 'use locale',
1327 # because this form does work well with Unicode
1328 push @f, $x unless $x =~ /$y/i && $y =~ /$x/i;
26c1569f
KW
1329
1330 # The places where Unicode's lc is different from fc are
1331 # skipped here by virtue of the 'next unless uc...' line above
1332 push @f, $x unless lc $x eq fc $x;
66cbab2c 1333 }
c00ff1c7 1334 }
ef4a39e5 1335
f78d9f29 1336 foreach my $x (sort keys %lower) {
66cbab2c 1337 if (! $is_utf8_locale) {
71e5cbb3
KW
1338 my $y = uc $x;
1339 next unless lc $y eq $x;
1340 print "# lower $x uc $y ",
faf0c248
KW
1341 $x =~ /$y/i ? 1 : 0, " ",
1342 $y =~ /$x/i ? 1 : 0, "\n" if 0;
71e5cbb3
KW
1343 if ($x =~ $re || $y =~ $re) { # See above.
1344 print "# Regex characters in '$x' or '$y', skipping test $locales_test_number for locale '$Locale'\n";
1345 next;
1346 }
1347 # With utf8 both will fail since the locale concept
1348 # of upper/lower does not work well in Unicode.
1349 push @f, $x unless $x =~ /$y/i == $y =~ /$x/i;
26c1569f
KW
1350
1351 push @f, $x unless lc $x eq fc $x;
66cbab2c
KW
1352 }
1353 else {
1354 use locale ':not_characters';
1355 my $y = uc $x;
1356 next unless lc $y eq $x;
1357 print "# lower $x uc $y ",
faf0c248
KW
1358 $x =~ /$y/i ? 1 : 0, " ",
1359 $y =~ /$x/i ? 1 : 0, "\n" if 0;
66cbab2c 1360 push @f, $x unless $x =~ /$y/i && $y =~ /$x/i;
26c1569f
KW
1361
1362 push @f, $x unless lc $x eq fc $x;
66cbab2c 1363 }
c00ff1c7 1364 }
c4093d7d 1365 tryneoalpha($Locale, $locales_test_number, @f == 0);
c00ff1c7 1366 if (@f) {
c4093d7d 1367 print "# failed $locales_test_number locale '$Locale' characters @f\n"
c00ff1c7 1368 }
d8093b23 1369 }
78787052
JL
1370
1371 # [perl #109318]
1372 {
1373 my @f = ();
1374 ++$locales_test_number;
1375 $test_names{$locales_test_number} = 'Verify atof with locale radix and negative exponent';
1376
1377 my $radix = POSIX::localeconv()->{decimal_point};
1378 my @nums = (
1379 "3.14e+9", "3${radix}14e+9", "3.14e-9", "3${radix}14e-9",
1380 "-3.14e+9", "-3${radix}14e+9", "-3.14e-9", "-3${radix}14e-9",
1381 );
1382
1383 if (! $is_utf8_locale) {
1384 use locale;
1385 for my $num (@nums) {
1386 push @f, $num
1387 unless sprintf("%g", $num) =~ /3.+14/;
1388 }
1389 }
1390 else {
1391 use locale ':not_characters';
1392 for my $num (@nums) {
1393 push @f, $num
1394 unless sprintf("%g", $num) =~ /3.+14/;
1395 }
1396 }
1397
1398 tryneoalpha($Locale, $locales_test_number, @f == 0);
1399 if (@f) {
1400 print "# failed $locales_test_number locale '$Locale' numbers @f\n"
1401 }
1402 }
8ebc5c01 1403}
284102e8 1404
c4093d7d 1405my $final_locales_test_number = $locales_test_number;
6cf0b567 1406
2a680da6
JH
1407# Recount the errors.
1408
c4093d7d
KW
1409foreach ($first_locales_test_number..$final_locales_test_number) {
1410 if (%setlocale_failed) {
1411 print "not ";
1412 }
1413 elsif ($Problem{$_} || !defined $Okay{$_} || !@{$Okay{$_}}) {
1414 if (defined $not_necessarily_a_problem_test_number
1415 && $_ == $not_necessarily_a_problem_test_number)
1416 {
1417 print "# The failure of test $not_necessarily_a_problem_test_number is not necessarily fatal.\n";
b4e009be 1418 print "# It usually indicates a problem in the environment,\n";
284102e8
JH
1419 print "# not in Perl itself.\n";
1420 }
6d5d702a
KW
1421 if ($Okay{$_} && ($_ >= $first_casing_test_number
1422 && $_ <= $final_casing_test_number))
1423 {
1424 my $percent_fail = int(.5 + (100 * scalar(keys $Problem{$_})
1425 / scalar(@{$Okay{$_}})));
1426 if ($percent_fail < $acceptable_fold_failure_percentage) {
1427 $test_names{$_} .= 'TODO';
1428 print "# ", 100 - $percent_fail, "% of locales pass the following test, so it is likely that the failures\n";
1429 print "# are errors in the locale definitions. The test is marked TODO, as the\n";
1430 print "# problem is not likely to be Perl's\n";
1431 }
1432 }
284102e8 1433 print "not ";
8ebc5c01 1434 }
c4093d7d 1435 print "ok $_";
6c2e653d
KW
1436 if (defined $test_names{$_}) {
1437 # If TODO is in the test name, make it thus
1438 my $todo = $test_names{$_} =~ s/TODO\s*//;
1439 print " $test_names{$_}";
1440 print " # TODO" if $todo;
1441 }
c4093d7d 1442 print "\n";
8ebc5c01 1443}
fb73857a 1444
2a680da6
JH
1445# Give final advice.
1446
284102e8
JH
1447my $didwarn = 0;
1448
c4093d7d 1449foreach ($first_locales_test_number..$final_locales_test_number) {
284102e8
JH
1450 if ($Problem{$_}) {
1451 my @f = sort keys %{ $Problem{$_} };
1452 my $f = join(" ", @f);
1453 $f =~ s/(.{50,60}) /$1\n#\t/g;
2a680da6
JH
1454 print
1455 "#\n",
1456 "# The locale ", (@f == 1 ? "definition" : "definitions"), "\n#\n",
284102e8
JH
1457 "#\t", $f, "\n#\n",
1458 "# on your system may have errors because the locale test $_\n",
1459 "# failed in ", (@f == 1 ? "that locale" : "those locales"),
1460 ".\n";
2a680da6 1461 print <<EOW;
284102e8
JH
1462#
1463# If your users are not using these locales you are safe for the moment,
1464# but please report this failure first to perlbug\@perl.com using the
1465# perlbug script (as described in the INSTALL file) so that the exact
1466# details of the failures can be sorted out first and then your operating
1467# system supplier can be alerted about these anomalies.
1468#
1469EOW
1470 $didwarn = 1;
fb73857a 1471 }
1472}
774d564b 1473
26d80d95 1474# Tell which locales were okay and which were not.
2a680da6 1475
284102e8 1476if ($didwarn) {
26d80d95 1477 my (@s, @F);
71e5cbb3 1478
284102e8
JH
1479 foreach my $l (@Locale) {
1480 my $p = 0;
c4093d7d
KW
1481 if ($setlocale_failed{$l}) {
1482 $p++;
1483 }
1484 else {
1f5852c9
KW
1485 foreach my $t
1486 ($first_locales_test_number..$final_locales_test_number)
1487 {
1488 $p++ if $Problem{$t}{$l};
1489 }
c4093d7d 1490 }
284102e8 1491 push @s, $l if $p == 0;
9445c837 1492 push @F, $l unless $p == 0;
8ebc5c01 1493 }
71e5cbb3 1494
68d47915
CK
1495 if (@s) {
1496 my $s = join(" ", @s);
1497 $s =~ s/(.{50,60}) /$1\n#\t/g;
1498
1499 warn
1500 "# The following locales\n#\n",
1501 "#\t", $s, "\n#\n",
1502 "# tested okay.\n#\n",
1503 } else {
26d80d95
LC
1504 warn "# None of your locales were fully okay.\n";
1505 }
1506
1507 if (@F) {
1508 my $F = join(" ", @F);
1509 $F =~ s/(.{50,60}) /$1\n#\t/g;
1510
1511 warn
1512 "# The following locales\n#\n",
0e053d1e 1513 "#\t", $F, "\n#\n",
26d80d95
LC
1514 "# had problems.\n#\n",
1515 } else {
1516 warn "# None of your locales were broken.\n";
68d47915 1517 }
8ebc5c01 1518}
90248788 1519
c4093d7d 1520$test_num = $final_locales_test_number;
c213d471 1521
fbd840df
KW
1522{ # perl #115808
1523 use warnings;
1524 my $warned = 0;
1525 local $SIG{__WARN__} = sub {
1526 $warned = $_[0] =~ /uninitialized/;
1527 };
1528 my $z = "y" . setlocale(&POSIX::LC_ALL, "xyzzy");
1529 ok($warned, "variable set to setlocale(BAD LOCALE) is considered uninitialized");
1530}
1531
094a2f8c 1532# Test that tainting and case changing works on utf8 strings. These tests are
1f5852c9
KW
1533# placed last to avoid disturbing the hard-coded test numbers that existed at
1534# the time these were added above this in this file.
0099bb8d
KW
1535# This also tests that locale overrides unicode_strings in the same scope for
1536# non-utf8 strings.
094a2f8c
KW
1537setlocale(LC_ALL, "C");
1538{
1539 use locale;
0099bb8d 1540 use feature 'unicode_strings';
094a2f8c 1541
26c1569f 1542 foreach my $function ("uc", "ucfirst", "lc", "lcfirst", "fc") {
094a2f8c
KW
1543 my @list; # List of code points to test for $function
1544
1545 # Used to calculate the changed case for ASCII characters by using the
1546 # ord, instead of using one of the functions under test.
1547 my $ascii_case_change_delta;
1548 my $above_latin1_case_change_delta; # Same for the specific ords > 255
1549 # that we use
1550
1551 # We test an ASCII character, which should change case and be tainted;
1552 # a Latin1 character, which shouldn't change case under this C locale,
1553 # and is tainted.
1554 # an above-Latin1 character that when the case is changed would cross
1555 # the 255/256 boundary, so doesn't change case and isn't tainted
1556 # (the \x{149} is one of these, but changes into 2 characters, the
1557 # first one of which doesn't cross the boundary.
1558 # the final one in each list is an above-Latin1 character whose case
1559 # does change, and shouldn't be tainted. The code below uses its
1560 # position in its list as a marker to indicate that it, unlike the
1561 # other code points above ASCII, has a successful case change
1562 if ($function =~ /^u/) {
094a2f8c
KW
1563 @list = ("", "a", "\xe0", "\xff", "\x{fb00}", "\x{149}", "\x{101}");
1564 $ascii_case_change_delta = -32;
1565 $above_latin1_case_change_delta = -1;
1566 }
1567 else {
1ca267a5 1568 @list = ("", "A", "\xC0", "\x{17F}", "\x{100}");
094a2f8c
KW
1569 $ascii_case_change_delta = +32;
1570 $above_latin1_case_change_delta = +1;
1571 }
66cbab2c 1572 foreach my $is_utf8_locale (0 .. 1) {
71e5cbb3
KW
1573 foreach my $j (0 .. $#list) {
1574 my $char = $list[$j];
0099bb8d
KW
1575
1576 for my $encoded_in_utf8 (0 .. 1) {
faf0c248
KW
1577 my $should_be;
1578 my $changed;
1579 if (! $is_utf8_locale) {
1580 $should_be = ($j == $#list)
1581 ? chr(ord($char) + $above_latin1_case_change_delta)
1582 : (length $char == 0 || ord($char) > 127)
1583 ? $char
1584 : chr(ord($char) + $ascii_case_change_delta);
1585
1586 # This monstrosity is in order to avoid using an eval,
1587 # which might perturb the results
1588 $changed = ($function eq "uc")
1589 ? uc($char)
1590 : ($function eq "ucfirst")
1591 ? ucfirst($char)
1592 : ($function eq "lc")
1593 ? lc($char)
1594 : ($function eq "lcfirst")
1595 ? lcfirst($char)
26c1569f
KW
1596 : ($function eq "fc")
1597 ? fc($char)
faf0c248
KW
1598 : die("Unexpected function \"$function\"");
1599 }
1600 else {
1601 {
1602 no locale;
71e5cbb3 1603
faf0c248
KW
1604 # For utf8-locales the case changing functions
1605 # should work just like they do outside of locale.
1606 # Can use eval here because not testing it when
1607 # not in locale.
1608 $should_be = eval "$function('$char')";
1609 die "Unexpected eval error $@ from 'eval \"$function('$char')\"'" if $@;
71e5cbb3 1610
faf0c248
KW
1611 }
1612 use locale ':not_characters';
1613 $changed = ($function eq "uc")
1614 ? uc($char)
1615 : ($function eq "ucfirst")
1616 ? ucfirst($char)
1617 : ($function eq "lc")
1618 ? lc($char)
1619 : ($function eq "lcfirst")
1620 ? lcfirst($char)
26c1569f
KW
1621 : ($function eq "fc")
1622 ? fc($char)
faf0c248 1623 : die("Unexpected function \"$function\"");
71e5cbb3 1624 }
faf0c248
KW
1625 ok($changed eq $should_be,
1626 "$function(\"$char\") in C locale "
1627 . (($is_utf8_locale)
1628 ? "(use locale ':not_characters'"
1629 : "(use locale")
1630 . (($encoded_in_utf8)
1631 ? "; encoded in utf8)"
1632 : "; not encoded in utf8)")
1633 . " should be \"$should_be\", got \"$changed\"");
1634
1635 # Tainting shouldn't happen for utf8 locales, empty
1636 # strings, or those characters above 255.
1637 (! $is_utf8_locale && length($char) > 0 && ord($char) < 256)
1638 ? check_taint($changed)
1639 : check_taint_not($changed);
1640
1641 # Use UTF-8 next time through the loop
1642 utf8::upgrade($char);
0099bb8d 1643 }
66cbab2c 1644 }
094a2f8c
KW
1645 }
1646 }
1647}
1648
fdf053ee 1649print "1..$test_num\n";
906f284f 1650
90248788 1651# eof