From: Jarkko Hietaniemi Date: Mon, 13 Jan 2003 23:13:02 +0000 (+0000) Subject: Add a test for encoding 'utf8'. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=06fb145cab43a2ded6cd129384406808a391c59a;p=p5sagit%2Fp5-mst-13.2.git Add a test for encoding 'utf8'. p4raw-id: //depot/perl@18479 --- diff --git a/MANIFEST b/MANIFEST index 4e798d4..44a53a7 100644 --- a/MANIFEST +++ b/MANIFEST @@ -259,6 +259,7 @@ ext/Encode/t/big5-hkscs.utf test data ext/Encode/t/CJKT.t test script ext/Encode/t/Encode.t test script ext/Encode/t/Encoder.t test script +ext/Encode/t/enc_utf8.t test script ext/Encode/t/encoding.t test script ext/Encode/t/fallback.t test script ext/Encode/t/gb2312.enc test data diff --git a/ext/Encode/MANIFEST b/ext/Encode/MANIFEST index 77c189e..cb4a0d8 100644 --- a/ext/Encode/MANIFEST +++ b/ext/Encode/MANIFEST @@ -61,6 +61,7 @@ t/big5-eten.enc test data t/big5-eten.utf test data t/big5-hkscs.enc test data t/big5-hkscs.utf test data +t/enc_utf8.t test script t/encoding.t test script t/fallback.t test script t/gb2312.enc test data diff --git a/ext/Encode/t/enc_utf8.t b/ext/Encode/t/enc_utf8.t new file mode 100644 index 0000000..20eb288 --- /dev/null +++ b/ext/Encode/t/enc_utf8.t @@ -0,0 +1,63 @@ +BEGIN { + require Config; import Config; + if ($Config{'extensions'} !~ /\bEncode\b/) { + print "1..0 # Skip: Encode was not built\n"; + exit 0; + } + unless (find PerlIO::Layer 'perlio') { + print "1..0 # Skip: PerlIO was not built\n"; + exit 0; + } + if (ord("A") == 193) { + print "1..0 # encoding pragma does not support EBCDIC platforms\n"; + exit(0); + } +} + +use encoding 'utf8'; + +my @c = (127, 128, 255, 256); + +print "1.." . (scalar @c + 1) . "\n"; + +my @f; + +for my $i (0..$#c) { + push @f, "f$i"; + open(F, ">f$i") or die "$0: failed to open 'f$i' for writing: $!"; + binmode(F, ":utf8"); + print F chr($c[$i]); + close F; +} + +my $t = 1; + +for my $i (0..$#c) { + open(F, "; + my $o = ord($c); + print $o == $c[$i] ? "ok $t\n" : "not ok $t # $o != $c[$i]\n"; + $t++; +} + +my $f = "f4"; + +push @f, $f; +open(F, ">$f") or die "$0: failed to open '$f' for writing: $!"; +binmode(F, ":raw"); # Output raw bytes. +print F chr(128); # Output illegal UTF-8. +close F; +open(F, $f) or die "$0: failed to open '$f' for reading: $!"; +binmode(F, ":encoding(utf-8)"); +{ + local $^W = 1; + local $SIG{__WARN__} = sub { $a = shift }; + eval { }; # This should get caught. +} +print $a =~ qr{^utf8 "\\x80" does not map to Unicode} ? + "ok $t\n" : "not ok $t: $a\n"; + +END { + 1 while unlink @f; +}