This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Encode to CPAN version 2.78
[perl5.git] / t / op / lc.t
1 #!./perl
2
3 # This file is intentionally encoded in latin-1.
4
5 BEGIN {
6     chdir 't' if -d 't';
7     require './test.pl';
8     set_up_inc('../lib');
9     require Config; import Config;
10     skip_all_without_unicode_tables();
11     require './charset_tools.pl';
12     require './loc_tools.pl';   # Contains find_utf8_ctype_locale()
13 }
14
15 use feature qw( fc );
16
17 plan tests => 134 + 4 * 256;
18
19 is(lc(undef),      "", "lc(undef) is ''");
20 is(lcfirst(undef), "", "lcfirst(undef) is ''");
21 is(uc(undef),      "", "uc(undef) is ''");
22 is(ucfirst(undef), "", "ucfirst(undef) is ''");
23
24 {
25     no feature 'fc';
26     is(CORE::fc(undef), "", "fc(undef) is ''");
27     is(CORE::fc(''),    "", "fc('') is ''");
28
29     local $@;
30     eval { fc("eeyup") };
31     like($@, qr/Undefined subroutine &main::fc/, "fc() throws an exception,");
32
33     {
34         use feature 'fc';
35         local $@;
36         eval { fc("eeyup") };
37         ok(!$@, "...but works after requesting the feature");
38     }
39 }
40
41 $a = "HELLO.* world";
42 $b = "hello.* WORLD";
43
44 is("\Q$a\E."      , "HELLO\\.\\*\\ world.", '\Q\E HELLO.* world');
45 is("\u$a"         , "HELLO\.\* world",      '\u');
46 is("\l$a"         , "hELLO\.\* world",      '\l');
47 is("\U$a"         , "HELLO\.\* WORLD",      '\U');
48 is("\L$a"         , "hello\.\* world",      '\L');
49 is("\F$a"         , "hello\.\* world",      '\F');
50
51 is(quotemeta($a)  , "HELLO\\.\\*\\ world",  'quotemeta');
52 is(ucfirst($a)    , "HELLO\.\* world",      'ucfirst');
53 is(lcfirst($a)    , "hELLO\.\* world",      'lcfirst');
54 is(uc($a)         , "HELLO\.\* WORLD",      'uc');
55 is(lc($a)         , "hello\.\* world",      'lc');
56 is(fc($a)         , "hello\.\* world",      'fc');
57
58 is("\Q$b\E."      , "hello\\.\\*\\ WORLD.", '\Q\E hello.* WORLD');
59 is("\u$b"         , "Hello\.\* WORLD",      '\u');
60 is("\l$b"         , "hello\.\* WORLD",      '\l');
61 is("\U$b"         , "HELLO\.\* WORLD",      '\U');
62 is("\L$b"         , "hello\.\* world",      '\L');
63 is("\F$b"         , "hello\.\* world",      '\F');
64
65 is(quotemeta($b)  , "hello\\.\\*\\ WORLD",  'quotemeta');
66 is(ucfirst($b)    , "Hello\.\* WORLD",      'ucfirst');
67 is(lcfirst($b)    , "hello\.\* WORLD",      'lcfirst');
68 is(uc($b)         , "HELLO\.\* WORLD",      'uc');
69 is(lc($b)         , "hello\.\* world",      'lc');
70 is(fc($b)         , "hello\.\* world",      'fc');
71
72 # \x{100} is LATIN CAPITAL LETTER A WITH MACRON; its bijective lowercase is
73 # \x{101}, LATIN SMALL LETTER A WITH MACRON.
74 # Which is also its foldcase.
75
76 $a = "\x{100}\x{101}Aa";
77 $b = "\x{101}\x{100}aA";
78
79 is("\Q$a\E."      , "\x{100}\x{101}Aa.", '\Q\E \x{100}\x{101}Aa');
80 is("\u$a"         , "\x{100}\x{101}Aa",  '\u');
81 is("\l$a"         , "\x{101}\x{101}Aa",  '\l');
82 is("\U$a"         , "\x{100}\x{100}AA",  '\U');
83 is("\L$a"         , "\x{101}\x{101}aa",  '\L');
84 is("\F$a"         , "\x{101}\x{101}aa",  '\F');
85
86 is(quotemeta($a)  , "\x{100}\x{101}Aa",  'quotemeta');
87 is(ucfirst($a)    , "\x{100}\x{101}Aa",  'ucfirst');
88 is(lcfirst($a)    , "\x{101}\x{101}Aa",  'lcfirst');
89 is(uc($a)         , "\x{100}\x{100}AA",  'uc');
90 is(lc($a)         , "\x{101}\x{101}aa",  'lc');
91 is(fc($a)         , "\x{101}\x{101}aa",  'fc');
92
93 is("\Q$b\E."      , "\x{101}\x{100}aA.", '\Q\E \x{101}\x{100}aA');
94 is("\u$b"         , "\x{100}\x{100}aA",  '\u');
95 is("\l$b"         , "\x{101}\x{100}aA",  '\l');
96 is("\U$b"         , "\x{100}\x{100}AA",  '\U');
97 is("\L$b"         , "\x{101}\x{101}aa",  '\L');
98 is("\F$b"         , "\x{101}\x{101}aa",  '\F');
99
100 is(quotemeta($b)  , "\x{101}\x{100}aA",  'quotemeta');
101 is(ucfirst($b)    , "\x{100}\x{100}aA",  'ucfirst');
102 is(lcfirst($b)    , "\x{101}\x{100}aA",  'lcfirst');
103 is(uc($b)         , "\x{100}\x{100}AA",  'uc');
104 is(lc($b)         , "\x{101}\x{101}aa",  'lc');
105 is(fc($b)         , "\x{101}\x{101}aa",  'fc');
106
107 my $sharp_s = uni_to_native("\x{DF}");
108 # \x{DF} is LATIN SMALL LETTER SHARP S, its uppercase is SS or \x{53}\x{53};
109 # \x{149} is LATIN SMALL LETTER N PRECEDED BY APOSTROPHE, its uppercase is
110 # \x{2BC}\x{E4} or MODIFIER LETTER APOSTROPHE and N.
111
112 is("\U${sharp_s}aB\x{149}cD", "SSAB\x{2BC}NCD", "multicharacter uppercase");
113
114 # The \x{DF} is its own lowercase, ditto for \x{149}.
115 # There are no single character -> multiple characters lowercase mappings.
116
117 is("\L${sharp_s}aB\x{149}cD", "${sharp_s}ab\x{149}cd",
118        "multicharacter lowercase");
119
120 # \x{DF} is LATIN SMALL LETTER SHARP S, its foldcase is ss or \x{73}\x{73};
121 # \x{149} is LATIN SMALL LETTER N PRECEDED BY APOSTROPHE, its foldcase is
122 # \x{2BC}\x{6E} or MODIFIER LETTER APOSTROPHE and n.
123 # Note that is this further tested in t/uni/fold.t
124
125 is("\F${sharp_s}aB\x{149}cD", "ssab\x{2BC}ncd", "multicharacter foldcase");
126
127
128 # titlecase is used for \u / ucfirst.
129
130 # \x{587} is ARMENIAN SMALL LIGATURE ECH YIWN and its titlecase is
131 # \x{535}\x{582} ARMENIAN CAPITAL LETTER ECH + ARMENIAN SMALL LETTER YIWN
132 # while its lowercase is 
133 # \x{587} itself
134 # and its uppercase is
135 # \x{535}\x{552} ARMENIAN CAPITAL LETTER ECH + ARMENIAN CAPITAL LETTER YIWN
136 # The foldcase is \x{565}\x{582} ARMENIAN SMALL LETTER ECH + ARMENIAN SMALL LETTER YIWN
137
138 $a = "\x{587}";
139
140 is("\L\x{587}" , "\x{587}",        "ligature lowercase");
141 is("\u\x{587}" , "\x{535}\x{582}", "ligature titlecase");
142 is("\U\x{587}" , "\x{535}\x{552}", "ligature uppercase");
143 is("\F\x{587}" , "\x{565}\x{582}", "ligature foldcase");
144
145 # mktables had problems where many-to-one case mappings didn't work right.
146 # The lib/uni/fold.t should give the fourth folding, "casefolding", a good
147 # workout.
148 # \x{01C4} is LATIN CAPITAL LETTER DZ WITH CARON
149 # \x{01C5} is LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
150 # \x{01C6} is LATIN SMALL LETTER DZ WITH CARON
151 # \x{03A3} is GREEK CAPITAL LETTER SIGMA
152 # \x{03C2} is GREEK SMALL LETTER FINAL SIGMA
153 # \x{03C3} is GREEK SMALL LETTER SIGMA
154
155 is(lc("\x{1C4}") , "\x{1C6}",      "U+01C4 lc is U+01C6");
156 is(lc("\x{1C5}") , "\x{1C6}",      "U+01C5 lc is U+01C6, too");
157
158 is(ucfirst("\x{3C2}") , "\x{3A3}", "U+03C2 ucfirst is U+03A3");
159 is(ucfirst("\x{3C3}") , "\x{3A3}", "U+03C3 ucfirst is U+03A3, too");
160
161 is(uc("\x{1C5}") , "\x{1C4}",      "U+01C5 uc is U+01C4");
162 is(uc("\x{1C6}") , "\x{1C4}",      "U+01C6 uc is U+01C4, too");
163
164 # #18107: A host of bugs involving [ul]c{,first}. AMS 20021106
165 $a = "\x{3c3}foo.bar"; # \x{3c3} == GREEK SMALL LETTER SIGMA.
166 $b = "\x{3a3}FOO.BAR"; # \x{3a3} == GREEK CAPITAL LETTER SIGMA.
167
168 ($c = $b) =~ s/(\w+)/lc($1)/ge;
169 is($c , $a, "Using s///e to change case.");
170
171 ($c = $a) =~ s/(\p{IsWord}+)/uc($1)/ge;
172 is($c , $b, "Using s///e to change case.");
173
174 ($c = $a) =~ s/(\p{IsWord}+)/fc($1)/ge;
175 is($c , $a, "Using s///e to foldcase.");
176
177 ($c = $b) =~ s/(\p{IsWord}+)/lcfirst($1)/ge;
178 is($c , "\x{3c3}FOO.bAR", "Using s///e to change case.");
179
180 ($c = $a) =~ s/(\p{IsWord}+)/ucfirst($1)/ge;
181 is($c , "\x{3a3}foo.Bar", "Using s///e to change case.");
182
183 # #18931: perl5.8.0 bug in \U..\E processing
184 # Test case from Nicholas Clark.
185 for my $a (0,1) {
186     $_ = 'abcdefgh';
187     $_ .= chr 256;
188     chop;
189     /(.*)/;
190     is(uc($1), "ABCDEFGH", "[perl #18931]");
191 }
192
193 {
194     foreach (0, 1) {
195         $a = v10.v257;
196         chop $a;
197         $a =~ s/^(\s*)(\w*)/$1\u$2/;
198         is($a, v10, "[perl #18857]");
199     } 
200 }
201
202
203 # [perl #38619] Bug in lc and uc (interaction between UTF-8, substr, and lc/uc)
204
205 for ("a\x{100}", "xyz\x{100}") {
206     is(substr(uc($_), 0), uc($_), "[perl #38619] uc");
207 }
208 for ("A\x{100}", "XYZ\x{100}") {
209     is(substr(lc($_), 0), lc($_), "[perl #38619] lc");
210 }
211 for ("a\x{100}", "ßyz\x{100}") { # ß to Ss (different length)
212     is(substr(ucfirst($_), 0), ucfirst($_), "[perl #38619] ucfirst");
213 }
214
215 #fc() didn't exist back then, but coverage is coverage.
216 for ("a\x{100}", "ßyz\x{100}", "xyz\x{100}", "XYZ\x{100}") { # ß to Ss (different length)
217     is(substr(fc($_), 0), fc($_), "[perl #38619] fc");
218 }
219
220 # Related to [perl #38619]
221 # the original report concerns PERL_MAGIC_utf8.
222 # these cases concern PERL_MAGIC_regex_global.
223
224 for (map { $_ } "a\x{100}", "abc\x{100}", "\x{100}") {
225     chop; # get ("a", "abc", "") in utf8
226     my $return =  uc($_) =~ /\G(.?)/g;
227     my $result = $return ? $1 : "not";
228     my $expect = (uc($_) =~ /(.?)/g)[0];
229     is($return, 1,       "[perl #38619]");
230     is($result, $expect, "[perl #38619]");
231 }
232
233 for (map { $_ } "A\x{100}", "ABC\x{100}", "\x{100}") {
234     chop; # get ("A", "ABC", "") in utf8
235     my $return =  lc($_) =~ /\G(.?)/g;
236     my $result = $return ? $1 : "not";
237     my $expect = (lc($_) =~ /(.?)/g)[0];
238     is($return, 1,       "[perl #38619]");
239     is($result, $expect, "[perl #38619]");
240 }
241
242 for (map { $_ } "A\x{100}", "ABC\x{100}", "\x{100}") {
243     chop; # get ("A", "ABC", "") in utf8
244     my $return =  fc($_) =~ /\G(.?)/g;
245     my $result = $return ? $1 : "not";
246     my $expect = (fc($_) =~ /(.?)/g)[0];
247     is($return, 1,       "[perl #38619]");
248     is($result, $expect, "[perl #38619]");
249 }
250
251 for (1, 4, 9, 16, 25) {
252     is(uc "\x{03B0}" x $_, "\x{3a5}\x{308}\x{301}" x $_,
253        'uc U+03B0 grows threefold');
254
255     is(lc "\x{0130}" x $_, "i\x{307}" x $_, 'lc U+0130 grows');
256
257     is(fc "\x{03B0}" x $_, "\x{3C5}\x{308}\x{301}" x $_,
258        'fc U+03B0 grows threefold');
259 }
260
261 # bug #43207
262 my $temp = "HellO";
263 for ("$temp") {
264     lc $_;
265     is($_, "HellO", '[perl #43207] lc($_) modifying $_');
266 }
267 for ("$temp") {
268     fc $_;
269     is($_, "HellO", '[perl #43207] fc($_) modifying $_');
270 }
271 for ("$temp") {
272     uc $_;
273     is($_, "HellO", '[perl #43207] uc($_) modifying $_');
274 }
275 for ("$temp") {
276     ucfirst $_;
277     is($_, "HellO", '[perl #43207] ucfirst($_) modifying $_');
278 }
279 for ("$temp") {
280     lcfirst $_;
281     is($_, "HellO", '[perl #43207] lcfirst($_) modifying $_');
282 }
283
284 # new in Unicode 5.1.0
285 is(lc("\x{1E9E}"), uni_to_native("\x{df}"), "lc(LATIN CAPITAL LETTER SHARP S)");
286
287 {
288     use feature 'unicode_strings';
289     use bytes;
290     is(lc(uni_to_native("\xc0")), uni_to_native("\xc0"), "lc of above-ASCII Latin1 is itself under use bytes");
291     is(lcfirst(uni_to_native("\xc0")), uni_to_native("\xc0"), "lcfirst of above-ASCII Latin1 is itself under use bytes");
292     is(uc(uni_to_native("\xe0")), uni_to_native("\xe0"), "uc of above-ASCII Latin1 is itself under use bytes");
293     is(ucfirst(uni_to_native("\xe0")), uni_to_native("\xe0"), "ucfirst of above-ASCII Latin1 is itself under use bytes");
294 }
295
296 # Brought up in ticket #117855: Constant folding applied to uc() should use
297 # the right set of hints.
298 fresh_perl_like(<<'constantfolding', qr/^(\d+),\1\z/, {},
299     my $function = "uc";
300     my $char = "\xff";
301     {
302         use feature 'unicode_strings';
303         print ord uc($char), ",",
304               ord eval "$function('$char')", "\n";
305     }
306 constantfolding
307     'folded uc() in string eval uses the right hints');
308
309 # In-place lc/uc should not corrupt string buffers when given a non-utf8-
310 # flagged thingy that stringifies to utf8
311 $h{k} = bless[], "\x{3b0}\x{3b0}\x{3b0}bcde"; # U+03B0 grows with uc()
312    # using delete marks it as TEMP, so uc-in-place is permitted
313 like uc delete $h{k}, qr "^(?:\x{3a5}\x{308}\x{301}){3}BCDE=ARRAY\(.*\)",
314     'uc(TEMP ref) does not produce a corrupt string';
315 $h{k} = bless[], "\x{130}bcde"; # U+0130 grows with lc()
316    # using delete marks it as TEMP, so uc-in-place is permitted
317 like lc delete $h{k}, qr "^i\x{307}bcde=array\(.*\)",
318     'lc(TEMP ref) does not produce a corrupt string';
319
320
321 my $utf8_locale = find_utf8_ctype_locale();
322
323 SKIP: {
324     skip 'Can\'t find a UTF-8 locale', 4*256 unless defined $utf8_locale;
325
326     eval { require POSIX; import POSIX 'locale_h'; };
327     unless (defined &POSIX::LC_CTYPE) {
328         skip "no POSIX (maybe no Fcntl, or no dynamic loading)", 4*256;
329     }
330
331     use feature qw( unicode_strings );
332
333     no locale;
334
335     my @unicode_lc;
336     my @unicode_uc;
337     my @unicode_lcfirst;
338     my @unicode_ucfirst;
339
340     # Get all the values outside of 'locale'
341     for my $i (0 .. 255) {
342         push @unicode_lc, lc(chr $i);
343         push @unicode_uc, uc(chr $i);
344         push @unicode_lcfirst, lcfirst(chr $i);
345         push @unicode_ucfirst, ucfirst(chr $i);
346     }
347
348     use locale;
349     setlocale(LC_CTYPE, $utf8_locale);
350
351     for my $i (0 .. 255) {
352         is(lc(chr $i), $unicode_lc[$i], "In a UTF-8 locale, lc(chr $i) is the same as official Unicode");
353         is(uc(chr $i), $unicode_uc[$i], "In a UTF-8 locale, uc(chr $i) is the same as official Unicode");
354         is(lcfirst(chr $i), $unicode_lcfirst[$i], "In a UTF-8 locale, lcfirst(chr $i) is the same as official Unicode");
355         is(ucfirst(chr $i), $unicode_ucfirst[$i], "In a UTF-8 locale, ucfirst(chr $i) is the same as official Unicode");
356     }
357 }