Upgrade to Encode 1.26, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / t / jperl.t
CommitLineData
3ef515df 1#
f2a2953c 2# $Id: jperl.t,v 1.20 2002/04/04 19:50:52 dankogai Exp $
3ef515df 3#
4# This script is written in euc-jp
5
a999c27c 6BEGIN {
7 require Config; import Config;
8 if ($Config{'extensions'} !~ /\bEncode\b/) {
9 print "1..0 # Skip: Encode was not built\n";
10 exit 0;
11 }
12 unless (find PerlIO::Layer 'perlio') {
13 print "1..0 # Skip: PerlIO was not built\n";
14 exit 0;
15 }
16 if (ord("A") == 193) {
17 print "1..0 # Skip: EBCDIC\n";
18 exit 0;
19 }
20 $| = 1;
21}
22
3ef515df 23use strict;
24use Test::More tests => 15;
25my $Debug = shift;
26
27no encoding; # ensure
28my $Enamae = "\xbe\xae\xbb\xf4\x20\xc3\xc6"; # euc-jp, with \x escapes
29use encoding "euc-jp";
30
31my $Namae = "¾®»ô ÃÆ"; # in Japanese, in euc-jp
32my $Name = "Dan Kogai"; # in English
33# euc-jp in \x format but after the pragma. But this one will be converted!
34my $Ynamae = "\xbe\xae\xbb\xf4\x20\xc3\xc6";
35
36
37my $str = $Namae; $str =~ s/¾®»ô ÃÆ/Dan Kogai/o;
38is($str, $Name, q{regex});
39$str = $Namae; $str =~ s/$Namae/Dan Kogai/o;
40is($str, $Name, q{regex - with variable});
41is(length($Namae), 4, q{utf8:length});
42{
43 use bytes;
44 # converted to UTF-8 so 3*3+1
45 is(length($Namae), 10, q{bytes:length});
46 #
47 is(length($Enamae), 7, q{euc:length}); # 2*3+1
48 is ($Namae, $Ynamae, q{literal conversions});
49 isnt($Enamae, $Ynamae, q{before and after});
50 is($Enamae, Encode::encode('euc-jp', $Namae));
51}
52# let's test the scope as well. Must be in utf8 realm
53is(length($Namae), 4, q{utf8:length});
54
55{
56 no encoding;
57 ok(! defined(${^ENCODING}), q{no encoding;});
58}
59# should've been isnt() but no scoping is suported -- yet
60ok(! defined(${^ENCODING}), q{not scoped yet});
61{
62 # now let's try some real black magic!
63 local(${^ENCODING}) = Encode::find_encoding("euc-jp");
64 my $str = "\xbe\xae\xbb\xf4\x20\xc3\xc6";
65 is (length($str), 4, q{black magic:length});
66 is ($str, $Enamae, q{black magic:eq});
67}
68ok(! defined(${^ENCODING}), q{out of black magic});
69use bytes;
70is (length($Namae), 10);
711;
72__END__
73
74