Fix perlio for Encode/t/perlio.t's SKIPPED TODO tests,
[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;
85982a32 22use Test::More tests => 15;
64ffdd5e 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
64ffdd5e 80END {
81 1 while unlink($utf,$rnd);
82}