3 # This is a base file to be used by various .t's in its directory
10 require 'charset_tools.pl';
11 require './t/utf8_setup.pl';
16 no warnings 'deprecated'; # Some of the below are above IV_MAX on 32 bit
17 # machines, and that is tested elsewhere
25 local $SIG{__WARN__} = sub { push @warnings_gotten, @_ };
27 sub nonportable_regex ($) {
29 # Returns a pattern that matches the non-portable message raised either
30 # for the specific input code point, or the one generated when there
31 # is some malformation that precludes the message containing the specific
34 my $code_point = shift;
36 my $string = sprintf '(Code point 0x%X is not Unicode, and'
37 . '|Any UTF-8 sequence that starts with'
38 . ' "(\\\x[[:xdigit:]]{2})+" is for a'
39 . ' non-Unicode code point, and is) not portable',
44 # Now test the cases where a legal code point is generated, but may or may not
45 # be allowed/warned on.
47 # ($testname, $bytes, $disallow_flags, $controlling_warning_category,
48 # $allowed_uv, $needed_to_discern_len )
50 (isASCII) ? "\xed\xa0\x80" : I8_to_native("\xf1\xb6\xa0\xa0"),
51 $::UTF8_DISALLOW_SURROGATE,
54 [ "a middle surrogate",
55 (isASCII) ? "\xed\xa4\x8d" : I8_to_native("\xf1\xb6\xa8\xad"),
56 $::UTF8_DISALLOW_SURROGATE,
59 [ "highest surrogate",
60 (isASCII) ? "\xed\xbf\xbf" : I8_to_native("\xf1\xb7\xbf\xbf"),
61 $::UTF8_DISALLOW_SURROGATE,
64 [ "first non_unicode",
65 (isASCII) ? "\xf4\x90\x80\x80" : I8_to_native("\xf9\xa2\xa0\xa0\xa0"),
66 $::UTF8_DISALLOW_SUPER,
67 'non_unicode', 0x110000,
70 [ "non_unicode whose first byte tells that",
71 (isASCII) ? "\xf5\x80\x80\x80" : I8_to_native("\xfa\xa0\xa0\xa0\xa0"),
72 $::UTF8_DISALLOW_SUPER,
74 (isASCII) ? 0x140000 : 0x200000,
77 [ "first of 32 consecutive non-character code points",
78 (isASCII) ? "\xef\xb7\x90" : I8_to_native("\xf1\xbf\xae\xb0"),
79 $::UTF8_DISALLOW_NONCHAR,
82 [ "a mid non-character code point of the 32 consecutive ones",
83 (isASCII) ? "\xef\xb7\xa0" : I8_to_native("\xf1\xbf\xaf\xa0"),
84 $::UTF8_DISALLOW_NONCHAR,
87 [ "final of 32 consecutive non-character code points",
88 (isASCII) ? "\xef\xb7\xaf" : I8_to_native("\xf1\xbf\xaf\xaf"),
89 $::UTF8_DISALLOW_NONCHAR,
92 [ "non-character code point U+FFFE",
93 (isASCII) ? "\xef\xbf\xbe" : I8_to_native("\xf1\xbf\xbf\xbe"),
94 $::UTF8_DISALLOW_NONCHAR,
97 [ "non-character code point U+FFFF",
98 (isASCII) ? "\xef\xbf\xbf" : I8_to_native("\xf1\xbf\xbf\xbf"),
99 $::UTF8_DISALLOW_NONCHAR,
102 [ "non-character code point U+1FFFE",
103 (isASCII) ? "\xf0\x9f\xbf\xbe" : I8_to_native("\xf3\xbf\xbf\xbe"),
104 $::UTF8_DISALLOW_NONCHAR,
107 [ "non-character code point U+1FFFF",
108 (isASCII) ? "\xf0\x9f\xbf\xbf" : I8_to_native("\xf3\xbf\xbf\xbf"),
109 $::UTF8_DISALLOW_NONCHAR,
112 [ "non-character code point U+2FFFE",
113 (isASCII) ? "\xf0\xaf\xbf\xbe" : I8_to_native("\xf5\xbf\xbf\xbe"),
114 $::UTF8_DISALLOW_NONCHAR,
117 [ "non-character code point U+2FFFF",
118 (isASCII) ? "\xf0\xaf\xbf\xbf" : I8_to_native("\xf5\xbf\xbf\xbf"),
119 $::UTF8_DISALLOW_NONCHAR,
122 [ "non-character code point U+3FFFE",
123 (isASCII) ? "\xf0\xbf\xbf\xbe" : I8_to_native("\xf7\xbf\xbf\xbe"),
124 $::UTF8_DISALLOW_NONCHAR,
127 [ "non-character code point U+3FFFF",
128 (isASCII) ? "\xf0\xbf\xbf\xbf" : I8_to_native("\xf7\xbf\xbf\xbf"),
129 $::UTF8_DISALLOW_NONCHAR,
132 [ "non-character code point U+4FFFE",
133 (isASCII) ? "\xf1\x8f\xbf\xbe" : I8_to_native("\xf8\xa9\xbf\xbf\xbe"),
134 $::UTF8_DISALLOW_NONCHAR,
137 [ "non-character code point U+4FFFF",
138 (isASCII) ? "\xf1\x8f\xbf\xbf" : I8_to_native("\xf8\xa9\xbf\xbf\xbf"),
139 $::UTF8_DISALLOW_NONCHAR,
142 [ "non-character code point U+5FFFE",
143 (isASCII) ? "\xf1\x9f\xbf\xbe" : I8_to_native("\xf8\xab\xbf\xbf\xbe"),
144 $::UTF8_DISALLOW_NONCHAR,
147 [ "non-character code point U+5FFFF",
148 (isASCII) ? "\xf1\x9f\xbf\xbf" : I8_to_native("\xf8\xab\xbf\xbf\xbf"),
149 $::UTF8_DISALLOW_NONCHAR,
152 [ "non-character code point U+6FFFE",
153 (isASCII) ? "\xf1\xaf\xbf\xbe" : I8_to_native("\xf8\xad\xbf\xbf\xbe"),
154 $::UTF8_DISALLOW_NONCHAR,
157 [ "non-character code point U+6FFFF",
158 (isASCII) ? "\xf1\xaf\xbf\xbf" : I8_to_native("\xf8\xad\xbf\xbf\xbf"),
159 $::UTF8_DISALLOW_NONCHAR,
162 [ "non-character code point U+7FFFE",
163 (isASCII) ? "\xf1\xbf\xbf\xbe" : I8_to_native("\xf8\xaf\xbf\xbf\xbe"),
164 $::UTF8_DISALLOW_NONCHAR,
167 [ "non-character code point U+7FFFF",
168 (isASCII) ? "\xf1\xbf\xbf\xbf" : I8_to_native("\xf8\xaf\xbf\xbf\xbf"),
169 $::UTF8_DISALLOW_NONCHAR,
172 [ "non-character code point U+8FFFE",
173 (isASCII) ? "\xf2\x8f\xbf\xbe" : I8_to_native("\xf8\xb1\xbf\xbf\xbe"),
174 $::UTF8_DISALLOW_NONCHAR,
177 [ "non-character code point U+8FFFF",
178 (isASCII) ? "\xf2\x8f\xbf\xbf" : I8_to_native("\xf8\xb1\xbf\xbf\xbf"),
179 $::UTF8_DISALLOW_NONCHAR,
182 [ "non-character code point U+9FFFE",
183 (isASCII) ? "\xf2\x9f\xbf\xbe" : I8_to_native("\xf8\xb3\xbf\xbf\xbe"),
184 $::UTF8_DISALLOW_NONCHAR,
187 [ "non-character code point U+9FFFF",
188 (isASCII) ? "\xf2\x9f\xbf\xbf" : I8_to_native("\xf8\xb3\xbf\xbf\xbf"),
189 $::UTF8_DISALLOW_NONCHAR,
192 [ "non-character code point U+AFFFE",
193 (isASCII) ? "\xf2\xaf\xbf\xbe" : I8_to_native("\xf8\xb5\xbf\xbf\xbe"),
194 $::UTF8_DISALLOW_NONCHAR,
197 [ "non-character code point U+AFFFF",
198 (isASCII) ? "\xf2\xaf\xbf\xbf" : I8_to_native("\xf8\xb5\xbf\xbf\xbf"),
199 $::UTF8_DISALLOW_NONCHAR,
202 [ "non-character code point U+BFFFE",
203 (isASCII) ? "\xf2\xbf\xbf\xbe" : I8_to_native("\xf8\xb7\xbf\xbf\xbe"),
204 $::UTF8_DISALLOW_NONCHAR,
207 [ "non-character code point U+BFFFF",
208 (isASCII) ? "\xf2\xbf\xbf\xbf" : I8_to_native("\xf8\xb7\xbf\xbf\xbf"),
209 $::UTF8_DISALLOW_NONCHAR,
212 [ "non-character code point U+CFFFE",
213 (isASCII) ? "\xf3\x8f\xbf\xbe" : I8_to_native("\xf8\xb9\xbf\xbf\xbe"),
214 $::UTF8_DISALLOW_NONCHAR,
217 [ "non-character code point U+CFFFF",
218 (isASCII) ? "\xf3\x8f\xbf\xbf" : I8_to_native("\xf8\xb9\xbf\xbf\xbf"),
219 $::UTF8_DISALLOW_NONCHAR,
222 [ "non-character code point U+DFFFE",
223 (isASCII) ? "\xf3\x9f\xbf\xbe" : I8_to_native("\xf8\xbb\xbf\xbf\xbe"),
224 $::UTF8_DISALLOW_NONCHAR,
227 [ "non-character code point U+DFFFF",
228 (isASCII) ? "\xf3\x9f\xbf\xbf" : I8_to_native("\xf8\xbb\xbf\xbf\xbf"),
229 $::UTF8_DISALLOW_NONCHAR,
232 [ "non-character code point U+EFFFE",
233 (isASCII) ? "\xf3\xaf\xbf\xbe" : I8_to_native("\xf8\xbd\xbf\xbf\xbe"),
234 $::UTF8_DISALLOW_NONCHAR,
237 [ "non-character code point U+EFFFF",
238 (isASCII) ? "\xf3\xaf\xbf\xbf" : I8_to_native("\xf8\xbd\xbf\xbf\xbf"),
239 $::UTF8_DISALLOW_NONCHAR,
242 [ "non-character code point U+FFFFE",
243 (isASCII) ? "\xf3\xbf\xbf\xbe" : I8_to_native("\xf8\xbf\xbf\xbf\xbe"),
244 $::UTF8_DISALLOW_NONCHAR,
247 [ "non-character code point U+FFFFF",
248 (isASCII) ? "\xf3\xbf\xbf\xbf" : I8_to_native("\xf8\xbf\xbf\xbf\xbf"),
249 $::UTF8_DISALLOW_NONCHAR,
252 [ "non-character code point U+10FFFE",
253 (isASCII) ? "\xf4\x8f\xbf\xbe" : I8_to_native("\xf9\xa1\xbf\xbf\xbe"),
254 $::UTF8_DISALLOW_NONCHAR,
257 [ "non-character code point U+10FFFF",
258 (isASCII) ? "\xf4\x8f\xbf\xbf" : I8_to_native("\xf9\xa1\xbf\xbf\xbf"),
259 $::UTF8_DISALLOW_NONCHAR,
262 [ "requires at least 32 bits",
264 ? "\xfe\x82\x80\x80\x80\x80\x80"
266 "\xff\xa0\xa0\xa0\xa0\xa0\xa0\xa2\xa0\xa0\xa0\xa0\xa0\xa0"),
267 # This code point is chosen so that it is representable in a UV on
269 $::UTF8_DISALLOW_ABOVE_31_BIT,
273 [ "highest 32 bit code point",
275 ? "\xfe\x83\xbf\xbf\xbf\xbf\xbf"
277 "\xff\xa0\xa0\xa0\xa0\xa0\xa0\xa3\xbf\xbf\xbf\xbf\xbf\xbf"),
278 $::UTF8_DISALLOW_ABOVE_31_BIT,
282 [ "requires at least 32 bits, and use SUPER-type flags, instead of"
285 ? "\xfe\x82\x80\x80\x80\x80\x80"
287 "\xff\xa0\xa0\xa0\xa0\xa0\xa0\xa2\xa0\xa0\xa0\xa0\xa0\xa0"),
288 $::UTF8_DISALLOW_SUPER,
292 [ "overflow with warnings/disallow for more than 31 bits",
293 # This tests the interaction of WARN_ABOVE_31_BIT/DISALLOW_ABOVE_31_BIT
294 # with overflow. The overflow malformation is never allowed, so
295 # preventing it takes precedence if the ABOVE_31_BIT options would
296 # otherwise allow in an overflowing value. The ASCII code points (1
297 # for 32-bits; 1 for 64) were chosen because the old overflow
298 # detection algorithm did not catch them; this means this test also
299 # checks for that fix. The EBCDIC are arbitrary overflowing ones
300 # since we have no reports of failures with it.
303 ? "\xff\x80\x90\x90\x90\xbf\xbf\xbf\xbf\xbf\xbf\xbf\xbf"
305 "\xff\xB0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"))
307 ? "\xfe\x86\x80\x80\x80\x80\x80"
309 "\xff\xa0\xa0\xa0\xa0\xa0\xa0\xa4\xa0\xa0\xa0\xa0\xa0\xa0"))),
310 $::UTF8_DISALLOW_ABOVE_31_BIT,
312 (isASCII || $::is64bit) ? 2 : 8,
318 no warnings qw{portable overflow};
320 [ "Lowest 33 bit code point: overflow",
321 "\xFE\x84\x80\x80\x80\x80\x80",
322 $::UTF8_DISALLOW_ABOVE_31_BIT,
329 no warnings qw{portable overflow};
331 [ "More than 32 bits",
333 ? "\xff\x80\x80\x80\x80\x80\x81\x80\x80\x80\x80\x80\x80"
335 "\xff\xa0\xa0\xa0\xa0\xa0\xa2\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
336 $::UTF8_DISALLOW_ABOVE_31_BIT,
337 'utf8', 0x1000000000,
341 push @tests, # These could falsely show wrongly in a naive
343 [ "requires at least 32 bits",
345 "\xff\xa0\xa0\xa0\xa0\xa0\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
346 $::UTF8_DISALLOW_ABOVE_31_BIT,
350 [ "requires at least 32 bits",
352 "\xff\xa0\xa0\xa0\xa0\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
353 $::UTF8_DISALLOW_ABOVE_31_BIT,
354 'utf8', 0x10000000000,
357 [ "requires at least 32 bits",
359 "\xff\xa0\xa0\xa0\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
360 $::UTF8_DISALLOW_ABOVE_31_BIT,
361 'utf8', 0x200000000000,
364 [ "requires at least 32 bits",
366 "\xff\xa0\xa0\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
367 $::UTF8_DISALLOW_ABOVE_31_BIT,
368 'utf8', 0x4000000000000,
371 [ "requires at least 32 bits",
373 "\xff\xa0\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
374 $::UTF8_DISALLOW_ABOVE_31_BIT,
375 'utf8', 0x80000000000000,
378 [ "requires at least 32 bits",
380 "\xff\xa1\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"),
381 $::UTF8_DISALLOW_ABOVE_31_BIT,
382 'utf8', 0x1000000000000000,
388 # This test is split into this number of files.
389 my $num_test_files = $ENV{TEST_JOBS} || 1;
390 $num_test_files = 10 if $num_test_files > 10;
393 foreach my $test (@tests) {
395 next if $test_count % $num_test_files != $::TEST_CHUNK;
397 my ($testname, $bytes, $disallow_flags,
398 $controlling_warning_category, $allowed_uv, $needed_to_discern_len
401 my $length = length $bytes;
402 my $will_overflow = $allowed_uv < 0;
404 # The convention is that the got flag is the same value as the disallow
405 # one, and the warn flag is the next bit over. If this were violated, the
406 # tests here should start failing. We could do an eval under no strict to
408 my $expected_error_flags = $disallow_flags;
409 my $warn_flags = $disallow_flags << 1;
412 if ($allowed_uv > 0x7FFFFFFF) {
413 $message = nonportable_regex($allowed_uv);
415 elsif ($allowed_uv > 0x10FFFF) {
416 $message = qr/(not Unicode|for a non-Unicode code point).* may not be portable/;
418 elsif ($allowed_uv >= 0xD800 && $allowed_uv <= 0xDFFF) {
419 $message = qr/surrogate/;
420 $needed_to_discern_len = 2 unless defined $needed_to_discern_len;
422 elsif ( ($allowed_uv >= 0xFDD0 && $allowed_uv <= 0xFDEF)
423 || ($allowed_uv & 0xFFFE) == 0xFFFE)
425 $message = qr/Unicode non-character.*is not recommended for open interchange/;
426 $needed_to_discern_len = $length unless defined $needed_to_discern_len;
428 elsif ($will_overflow) {
429 $message = qr/overflows/;
432 die "Can't figure out what type of warning to test for $testname"
435 die 'Didn\'t set $needed_to_discern_len for ' . $testname
436 unless defined $needed_to_discern_len;
440 undef @warnings_gotten;
441 my $ret = test_isUTF8_CHAR($bytes, $length);
442 my $ret_flags = test_isUTF8_CHAR_flags($bytes, $length, 0);
443 if ($will_overflow) {
444 is($ret, 0, "isUTF8_CHAR() $testname: returns 0");
445 is($ret_flags, 0, "isUTF8_CHAR_flags() $testname: returns 0");
449 "isUTF8_CHAR() $testname: returns expected length: $length");
450 is($ret_flags, $length, "isUTF8_CHAR_flags(...,0) $testname:"
451 . " returns expected length: $length");
453 is(scalar @warnings_gotten, 0,
454 "isUTF8_CHAR() and isUTF8_CHAR()_flags $testname: generated"
456 or output_warnings(@warnings_gotten);
458 undef @warnings_gotten;
459 $ret = test_isSTRICT_UTF8_CHAR($bytes, $length);
460 if ($will_overflow) {
461 is($ret, 0, "isSTRICT_UTF8_CHAR() $testname: returns 0");
464 my $expected_ret = ( $testname =~ /surrogate|non-character/
465 || $allowed_uv > 0x10FFFF)
468 is($ret, $expected_ret, "isSTRICT_UTF8_CHAR() $testname: returns"
469 . " expected length: $expected_ret");
470 $ret = test_isUTF8_CHAR_flags($bytes, $length,
471 $::UTF8_DISALLOW_ILLEGAL_INTERCHANGE);
472 is($ret, $expected_ret,
473 "isUTF8_CHAR_flags('DISALLOW_ILLEGAL_INTERCHANGE')"
474 . " acts like isSTRICT_UTF8_CHAR");
476 is(scalar @warnings_gotten, 0,
477 "isSTRICT_UTF8_CHAR() and isUTF8_CHAR_flags $testname:"
478 . " generated no warnings")
479 or output_warnings(@warnings_gotten);
481 undef @warnings_gotten;
482 $ret = test_isC9_STRICT_UTF8_CHAR($bytes, $length);
483 if ($will_overflow) {
484 is($ret, 0, "isC9_STRICT_UTF8_CHAR() $testname: returns 0");
487 my $expected_ret = ( $testname =~ /surrogate/
488 || $allowed_uv > 0x10FFFF)
491 is($ret, $expected_ret, "isC9_STRICT_UTF8_CHAR() $testname:"
492 ." returns expected length: $expected_ret");
493 $ret = test_isUTF8_CHAR_flags($bytes, $length,
494 $::UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE);
495 is($ret, $expected_ret,
496 "isUTF8_CHAR_flags('DISALLOW_ILLEGAL_C9_INTERCHANGE')"
497 . " acts like isC9_STRICT_UTF8_CHAR");
499 is(scalar @warnings_gotten, 0,
500 "isC9_STRICT_UTF8_CHAR() and isUTF8_CHAR_flags $testname:"
501 . " generated no warnings")
502 or output_warnings(@warnings_gotten);
504 # Test partial character handling, for each byte not a full character
505 for my $j (1.. $length - 1) {
507 # Skip the test for the interaction between overflow and above-31
508 # bit. It is really testing other things than the partial
509 # character tests, for which other tests in this file are
511 last if $will_overflow;
513 foreach my $disallow_flag (0, $disallow_flags) {
514 my $partial = substr($bytes, 0, $j);
517 if ($disallow_flag) {
519 $comment = "disallowed";
520 if ($j < $needed_to_discern_len) {
522 $comment .= ", but need $needed_to_discern_len bytes"
528 $comment = "allowed";
531 undef @warnings_gotten;
533 $ret = test_is_utf8_valid_partial_char_flags($partial, $j,
535 is($ret, $ret_should_be,
536 "$testname: is_utf8_valid_partial_char_flags("
537 . display_bytes($partial)
538 . "), $comment: returns $ret_should_be");
539 is(scalar @warnings_gotten, 0,
540 "$testname: is_utf8_valid_partial_char_flags()"
541 . " generated no warnings")
542 or output_warnings(@warnings_gotten);
547 # This is more complicated than the malformations tested earlier, as there
548 # are several orthogonal variables involved. We test all the subclasses
549 # of utf8 warnings to verify they work with and without the utf8 class,
550 # and don't have effects on other sublass warnings
551 foreach my $trial_warning_category ('utf8', 'surrogate', 'nonchar', 'non_unicode') {
552 foreach my $warn_flag (0, $warn_flags) {
553 foreach my $disallow_flag (0, $disallow_flags) {
554 foreach my $do_warning (0, 1) {
556 # We try each of the above with various combinations of
557 # malformations that can occur on the same input sequence.
558 foreach my $short ("", "short") {
559 foreach my $unexpected_noncont ("",
560 "unexpected non-continuation")
562 foreach my $overlong ("", "overlong") {
564 # If we're creating an overlong, it can't be longer than
565 # the maximum length, so skip if we're already at that
567 next if $overlong && $length >= $::max_bytes;
570 my @expected_return_flags;
571 push @malformations, $short if $short;
572 push @malformations, $unexpected_noncont
573 if $unexpected_noncont;
574 push @malformations, $overlong if $overlong;
576 # The overflow malformation test in the input
577 # array is coerced into being treated like one of
579 if ($will_overflow) {
580 push @malformations, 'overflow';
581 push @expected_return_flags, $::UTF8_GOT_OVERFLOW;
584 my $malformations_name = join "/", @malformations;
585 $malformations_name .= " malformation"
586 if $malformations_name;
587 $malformations_name .= "s" if @malformations > 1;
588 my $this_bytes = $bytes;
589 my $this_length = $length;
590 my $expected_uv = $allowed_uv;
591 my $this_expected_len = $length;
592 my $this_needed_to_discern_len = $needed_to_discern_len;
593 if ($malformations_name) {
596 # Coerce the input into the desired
598 if ($malformations_name =~ /overlong/) {
600 # For an overlong, we convert the original
601 # start byte into a continuation byte with
602 # the same data bits as originally. ...
603 substr($this_bytes, 0, 1)
604 = start_byte_to_cont(substr($this_bytes,
607 # ... Then we prepend it with a known
608 # overlong sequence. This should evaluate
609 # to the exact same code point as the
612 = I8_to_native("\xff")
613 . (I8_to_native(chr $::lowest_continuation)
614 x ( $::max_bytes - 1 - length($this_bytes)))
616 $this_length = length($this_bytes);
617 $this_needed_to_discern_len
618 = $::max_bytes - ($this_expected_len
619 - $this_needed_to_discern_len);
620 $this_expected_len = $::max_bytes;
621 push @expected_return_flags, $::UTF8_GOT_LONG;
623 if ($malformations_name =~ /short/) {
625 # Just tell the test to not look far
626 # enough into the input.
628 $this_expected_len--;
629 push @expected_return_flags, $::UTF8_GOT_SHORT;
631 if ($malformations_name
632 =~ /non-continuation/)
634 # Change the final continuation byte into
636 my $pos = ($short) ? -2 : -1;
637 substr($this_bytes, $pos, 1) = '?';
638 $this_expected_len--;
639 push @expected_return_flags,
640 $::UTF8_GOT_NON_CONTINUATION;
644 my $eval_warn = $do_warning
645 ? "use warnings '$trial_warning_category'"
646 : $trial_warning_category eq "utf8"
647 ? "no warnings 'utf8'"
648 : ( "use warnings 'utf8';"
649 . " no warnings '$trial_warning_category'");
651 # Is effectively disallowed if we've set up a
652 # malformation, even if the flag indicates it is
653 # allowed. Fix up test name to indicate this as
655 my $disallowed = $disallow_flag
656 || $malformations_name;
657 my $this_name = "utf8n_to_uvchr_error() $testname: "
663 $this_name .= ", $eval_warn";
664 $this_name .= ", " . (($warn_flag)
665 ? 'with warning flag'
666 : 'no warning flag');
668 undef @warnings_gotten;
670 my $display_bytes = display_bytes($this_bytes);
671 my $call = " Call was: $eval_warn; \$ret_ref"
672 . " = test_utf8n_to_uvchr_error("
673 . "'$display_bytes', $this_length,"
675 . "|$disallow_flag)";
676 my $eval_text = "$eval_warn; \$ret_ref"
677 . " = test_utf8n_to_uvchr_error("
679 . " $this_length, $warn_flag"
680 . "|$disallow_flag)";
682 if (! ok ("$@ eq ''",
683 "$this_name: eval succeeded"))
685 diag "\$!='$!'; eval'd=\"$call\"";
689 is($ret_ref->[0], 0, "$this_name: Returns 0")
693 is($ret_ref->[0], $expected_uv,
694 "$this_name: Returns expected uv: "
695 . sprintf("0x%04X", $expected_uv))
698 is($ret_ref->[1], $this_expected_len,
699 "$this_name: Returns expected length:"
700 . " $this_expected_len")
703 my $returned_flags = $ret_ref->[2];
705 for (my $i = @expected_return_flags - 1; $i >= 0; $i--) {
706 if (ok($expected_return_flags[$i] & $returned_flags,
707 "Expected and got error bit return"
708 . " for $malformations[$i] malformation"))
710 $returned_flags &= ~$expected_return_flags[$i];
712 splice @expected_return_flags, $i, 1;
714 is(scalar @expected_return_flags, 0,
715 "Got all the expected malformation errors")
716 or diag Dumper \@expected_return_flags;
718 if ( $this_expected_len >= $this_needed_to_discern_len
719 && ($warn_flag || $disallow_flag))
721 is($returned_flags, $expected_error_flags,
722 "Got the correct error flag")
726 is($returned_flags, 0, "Got no other error flag");
729 if (@malformations) {
730 if (! $do_warning && $trial_warning_category eq 'utf8') {
731 goto no_warnings_expected;
734 # Check that each malformation generates a
735 # warning, removing that warning if found
737 foreach my $malformation (@malformations) {
738 foreach (my $i = 0; $i < @warnings_gotten; $i++) {
739 if ($warnings_gotten[$i] =~ /$malformation/) {
740 pass("Expected and got"
741 . "'$malformation' warning");
742 splice @warnings_gotten, $i, 1;
746 fail("Expected '$malformation' warning"
747 . " but didn't get it");
752 # Any overflow will override any super or above-31
754 goto no_warnings_expected
755 if $will_overflow || $this_expected_len
756 < $this_needed_to_discern_len;
759 && ( $trial_warning_category eq 'utf8'
760 || $trial_warning_category eq $controlling_warning_category))
762 goto no_warnings_expected;
765 if (is(scalar @warnings_gotten, 1,
766 "$this_name: Got a single warning "))
768 like($warnings_gotten[0], $message,
769 "$this_name: Got expected warning")
774 if (scalar @warnings_gotten) {
775 output_warnings(@warnings_gotten);
781 no_warnings_expected:
782 unless (is(scalar @warnings_gotten, 0,
783 "$this_name: Got no warnings"))
786 output_warnings(@warnings_gotten);
790 # Check CHECK_ONLY results when the input is
791 # disallowed. Do this when actually disallowed,
792 # not just when the $disallow_flag is set
794 undef @warnings_gotten;
795 $ret_ref = test_utf8n_to_uvchr_error(
796 $this_bytes, $this_length,
797 $disallow_flag|$::UTF8_CHECK_ONLY);
799 "$this_name, CHECK_ONLY: Returns 0")
801 is($ret_ref->[1], -1,
802 "$this_name: CHECK_ONLY: returns -1 for length")
804 if (! is(scalar @warnings_gotten, 0,
805 "$this_name, CHECK_ONLY: no warnings"
809 output_warnings(@warnings_gotten);
813 # Now repeat some of the above, but for
814 # uvchr_to_utf8_flags(). Since this comes from an
815 # existing code point, it hasn't overflowed, and
817 next if @malformations;
819 # The warning and disallow flags passed in are for
820 # utf8n_to_uvchr_error(). Convert them for
821 # uvchr_to_utf8_flags().
822 my $uvchr_warn_flag = 0;
823 my $uvchr_disallow_flag = 0;
825 if ($warn_flag == $::UTF8_WARN_SURROGATE) {
826 $uvchr_warn_flag = $::UNICODE_WARN_SURROGATE
828 elsif ($warn_flag == $::UTF8_WARN_NONCHAR) {
829 $uvchr_warn_flag = $::UNICODE_WARN_NONCHAR
831 elsif ($warn_flag == $::UTF8_WARN_SUPER) {
832 $uvchr_warn_flag = $::UNICODE_WARN_SUPER
834 elsif ($warn_flag == $::UTF8_WARN_ABOVE_31_BIT) {
836 = $::UNICODE_WARN_ABOVE_31_BIT;
839 fail(sprintf "Unexpected warn flag: %x",
844 if ($disallow_flag) {
845 if ($disallow_flag == $::UTF8_DISALLOW_SURROGATE)
848 = $::UNICODE_DISALLOW_SURROGATE;
850 elsif ($disallow_flag == $::UTF8_DISALLOW_NONCHAR)
853 = $::UNICODE_DISALLOW_NONCHAR;
855 elsif ($disallow_flag == $::UTF8_DISALLOW_SUPER) {
857 = $::UNICODE_DISALLOW_SUPER;
859 elsif ($disallow_flag
860 == $::UTF8_DISALLOW_ABOVE_31_BIT)
862 $uvchr_disallow_flag =
863 $::UNICODE_DISALLOW_ABOVE_31_BIT;
866 fail(sprintf "Unexpected disallow flag: %x",
872 $disallowed = $uvchr_disallow_flag;
874 $this_name = "uvchr_to_utf8_flags() $testname: "
875 . (($uvchr_disallow_flag)
878 ? 'ABOVE_31_BIT allowed'
880 $this_name .= ", $eval_warn";
881 $this_name .= ", " . (($uvchr_warn_flag)
882 ? 'with warning flag'
883 : 'no warning flag');
885 undef @warnings_gotten;
887 my $warn_flag = sprintf "0x%x", $uvchr_warn_flag;
888 my $disallow_flag = sprintf "0x%x",
889 $uvchr_disallow_flag;
890 $call = sprintf(" Call was: $eval_warn; \$ret"
891 . " = test_uvchr_to_utf8_flags("
892 . " 0x%x, $warn_flag|$disallow_flag)",
894 $eval_text = "$eval_warn; \$ret ="
895 . " test_uvchr_to_utf8_flags("
896 . "$allowed_uv, $warn_flag|"
899 if (! ok ("$@ eq ''", "$this_name: eval succeeded"))
901 diag "\$!='$!'; eval'd=\"$eval_text\"";
905 is($ret, undef, "$this_name: Returns undef")
909 is($ret, $bytes, "$this_name: Returns expected string")
913 && ($trial_warning_category eq 'utf8' || $trial_warning_category eq $controlling_warning_category))
915 if (!is(scalar @warnings_gotten, 0,
916 "$this_name: No warnings generated"))
919 output_warnings(@warnings_gotten);
922 elsif ( $uvchr_warn_flag
923 && ( $trial_warning_category eq 'utf8'
924 || $trial_warning_category eq $controlling_warning_category))
926 if (is(scalar @warnings_gotten, 1,
927 "$this_name: Got a single warning "))
929 like($warnings_gotten[0], $message,
930 "$this_name: Got expected warning")
935 output_warnings(@warnings_gotten)
936 if scalar @warnings_gotten;