Upgrade to Encode 2.00.
[p5sagit/p5-mst-13.2.git] / ext / Encode / t / enc_module.t
CommitLineData
7237418a 1# $Id: enc_module.t,v 2.0 2004/05/16 20:55:18 dankogai Exp $
6be7c101 2# This file is in euc-jp
3BEGIN {
4 require Config; import Config;
5 if ($Config{'extensions'} !~ /\bEncode\b/) {
6 print "1..0 # Skip: Encode was not built\n";
7 exit 0;
8 }
9 unless (find PerlIO::Layer 'perlio') {
10 print "1..0 # Skip: PerlIO was not built\n";
11 exit 0;
12 }
05ef2f67 13 if (defined ${^UNICODE} and ${^UNICODE} != 0){
14 print "1..0 # Skip: \${^UNICODE} == ${^UNICODE}\n";
15 exit 0;
16 }
6be7c101 17 if (ord("A") == 193) {
18 print "1..0 # encoding pragma does not support EBCDIC platforms\n";
19 exit(0);
20 }
21}
0f29a567 22use lib qw(t ext/Encode/t ../ext/Encode/t); # latter 2 for perl core
6be7c101 23use Mod_EUCJP;
24use encoding "euc-jp";
25use Test::More tests => 3;
26use File::Basename;
27use File::Spec;
28use File::Compare qw(compare_text);
29
8676e7d3 30my $DEBUG = shift || 0;
6be7c101 31my $dir = dirname(__FILE__);
32my $file0 = File::Spec->catfile($dir,"enc_module.enc");
33my $file1 = File::Spec->catfile($dir,"$$.enc");
34
35my $obj = Mod_EUCJP->new;
8676e7d3 36local $SIG{__WARN__} = sub{ $DEBUG and print STDERR @_ };
37# to silence reopening STD(IN|OUT) w/o closing unless $DEBUG
6be7c101 38
39open STDOUT, ">", $file1 or die "$file1:$!";
40print $obj->str, "\n";
41$obj->set("¥Æ¥¹¥Èʸ»úÎó");
42print $obj->str, "\n";
6be7c101 43
196fd07f 44# Please do not move this to a point after the comparison -- Craig Berry
bedba681 45# and "unless $^O eq 'freebsd'" is needed for FreeBSD (toy-)?thread
46# -- dankogai
196fd07f 47close STDOUT unless $^O eq 'freebsd';
48
6be7c101 49my $cmp = compare_text($file0, $file1);
50is($cmp, 0, "encoding vs. STDOUT");
6be7c101 51
52my @cmp = qw/½é´üʸ»úÎó ¥Æ¥¹¥Èʸ»úÎó/;
53open STDIN, "<", $file0 or die "$file0:$!";
54$obj = Mod_EUCJP->new;
55my $i = 0;
56while(<STDIN>){
0afd3698 57 s/\r?\n\z//;
6be7c101 58 is ($cmp[$i++], $_, "encoding vs. STDIN - $i");
59}
60
9735c3fc 61unlink $file1 unless $cmp;
6be7c101 62__END__
63