[perl@18752] warnings from CGI tests under cygwin
[p5sagit/p5-mst-13.2.git] / ext / Encode / t / enc_eucjp.t
CommitLineData
151b5d36 1# $Id: enc_eucjp.t,v 1.2 2003/02/06 01:52:11 dankogai Exp dankogai $
88632417 2# This is the twin of enc_utf8.t, the only difference is that
3# this has "use encoding 'euc-jp'".
4
5BEGIN {
6 require Config; import Config;
7 if ($Config{'extensions'} !~ /\bEncode\b/) {
8 print "1..0 # Skip: Encode was not built\n";
9 exit 0;
10 }
11 unless (find PerlIO::Layer 'perlio') {
12 print "1..0 # Skip: PerlIO was not built\n";
13 exit 0;
14 }
15 if (ord("A") == 193) {
16 print "1..0 # encoding pragma does not support EBCDIC platforms\n";
17 exit(0);
18 }
151b5d36 19 if ($] <= 5.008 and !$Config{perl_patchlevel}){
20 print "1..0 # Skip: Perl 5.8.1 or later required\n";
21 exit 0;
22 }
88632417 23}
24
25use encoding 'euc-jp';
26
27my @c = (127, 128, 255, 256);
28
29print "1.." . (scalar @c + 1) . "\n";
30
31my @f;
32
33for my $i (0..$#c) {
34 push @f, "f$i";
35 open(F, ">f$i") or die "$0: failed to open 'f$i' for writing: $!";
36 binmode(F, ":utf8");
37 print F chr($c[$i]);
fa6f41cf 38 print F pack("C" => $c[$i]);
88632417 39 close F;
40}
41
42my $t = 1;
43
44for my $i (0..$#c) {
45 open(F, "<f$i") or die "$0: failed to open 'f$i' for reading: $!";
46 binmode(F, ":utf8");
47 my $c = <F>;
48 my $o = ord($c);
49 print $o == $c[$i] ? "ok $t - utf8 I/O $c[$i]\n" : "not ok $t - utf8 I/O $c[$i]: $o != $c[$i]\n";
50 $t++;
51}
52
53my $f = "f" . @f;
54
55push @f, $f;
56open(F, ">$f") or die "$0: failed to open '$f' for writing: $!";
57binmode(F, ":raw"); # Output raw bytes.
58print F chr(128); # Output illegal UTF-8.
59close F;
60open(F, $f) or die "$0: failed to open '$f' for reading: $!";
61binmode(F, ":encoding(utf-8)");
62{
63 local $^W = 1;
64 local $SIG{__WARN__} = sub { $a = shift };
65 eval { <F> }; # This should get caught.
66}
67print $a =~ qr{^utf8 "\\x80" does not map to Unicode} ?
68 "ok $t - illegal utf8 input\n" : "not ok $t - illegal utf8 input: a = " . unpack("H*", $a) . "\n";
69
70END {
71 1 while unlink @f;
72}