Upgrade to Encode 1.33, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / t / KR.t
CommitLineData
64ffdd5e 1BEGIN {
037b88d6 2 if ($ENV{'PERL_CORE'}){
3 chdir 't';
4 unshift @INC, '../lib';
5 }
64ffdd5e 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 # Skip: EBCDIC\n";
17 exit 0;
18 }
19 $| = 1;
20}
21use strict;
22use Test::More tests => 22;
23#use Test::More qw(no_plan);
24use Encode;
25use File::Basename;
26use File::Spec;
27use File::Compare;
28require_ok "Encode::KR";
29
30my ($src, $uni, $dst, $txt, $euc, $utf, $ref, $rnd);
31
32ok(defined(my $enc = find_encoding('euc-kr')));
33ok($enc->isa('Encode::XS'));
34is($enc->name,'euc-kr');
35my $dir = dirname(__FILE__);
36
37my @subcodings = qw(ksc5601);
38
39for my $subcoding (@subcodings){
40 $euc = File::Spec->catfile($dir,"$subcoding.euc");
41 $utf = File::Spec->catfile($dir,"$$.utf8");
42 $ref = File::Spec->catfile($dir,"$subcoding.ref");
43 $rnd = File::Spec->catfile($dir,"$$.rnd");
44 print "# Basic decode test\n";
45 open($src,"<",$euc) || die "Cannot open $euc:$!";
46 binmode($src);
47 ok(defined($src) && fileno($src));
48 $txt = join('',<$src>);
49 open($dst,">:utf8",$utf) || die "Cannot open $utf:$!";
50 binmode($dst);
51 ok(defined($dst) && fileno($dst));
52 eval{ $uni = $enc->decode($txt,1) };
53 $@ and print $@;
54 ok(defined($uni));
55 is(length($txt),0);
56 print $dst $uni;
57 close($dst);
58 close($src);
59 ok(compare($utf,$ref) == 0);
60}
61
62print "# Basic encode test\n";
63open($src,"<:utf8",$ref) || die "Cannot open $ref:$!";
64binmode($src);
65ok(defined($src) && fileno($src));
66$uni = join('',<$src>);
67open($dst,">",$rnd) || die "Cannot open $rnd:$!";
68binmode($dst);
69ok(defined($dst) && fileno($dst));
70$txt = $enc->encode($uni,1);
71ok(defined($txt));
72is(length($uni),0);
73print $dst $txt;
74close($dst);
75close($src);
76ok(compare($euc,$rnd) == 0);
77
78is($enc->name,'euc-kr');
79
80print "# src :encoding test\n";
81open($src,"<encoding(euc-kr)",$euc) || die "Cannot open $euc:$!";
82binmode($src);
83ok(defined($src) && fileno($src));
84open($dst,">:utf8",$utf) || die "Cannot open $utf:$!";
85binmode($dst);
86ok(defined($dst) || fileno($dst));
87my $out = select($dst);
88while (<$src>)
89 {
90 print;
91 }
92close($dst);
93close($src);
94
95TODO:
96{
97 local $TODO = 'needs debugging on VMS' if $^O eq 'VMS';
98 ok(compare($utf,$ref) == 0);
99}
100select($out);
101
102SKIP:
103{
104 #skip "Multi-byte write is broken",3;
105 print "# dst :encoding test\n";
106 open($src,"<:utf8",$ref) || die "Cannot open $ref:$!";
107 binmode($src);
108 ok(defined($src) || fileno($src));
109 open($dst,">encoding(euc-kr)",$rnd) || die "Cannot open $rnd:$!";
110 binmode($dst);
111 ok(defined($dst) || fileno($dst));
112 my $out = select($dst);
113 while (<$src>)
114 {
115 print;
116 }
117 close($dst);
118 close($src);
119 ok(compare($euc,$rnd) == 0);
120 select($out);
121}
122
123is($enc->name,'euc-kr');
124
125END {
126 1 while unlink($utf,$rnd);
127}