Upgrade to Encode 1.26, from Dan Kogai.
[p5sagit/p5-mst-13.2.git] / ext / Encode / t / jperl.t
1 #
2 # $Id: jperl.t,v 1.20 2002/04/04 19:50:52 dankogai Exp $
3 #
4 # This script is written in euc-jp
5
6 BEGIN {
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
23 use strict;
24 use Test::More tests => 15;
25 my $Debug = shift;
26
27 no encoding; # ensure
28 my $Enamae = "\xbe\xae\xbb\xf4\x20\xc3\xc6"; # euc-jp, with \x escapes
29 use encoding "euc-jp";
30
31 my $Namae  = "¾®»ô ÃÆ";   # in Japanese, in euc-jp
32 my $Name   = "Dan Kogai"; # in English
33 # euc-jp in \x format but after the pragma.  But this one will be converted!
34 my $Ynamae = "\xbe\xae\xbb\xf4\x20\xc3\xc6"; 
35
36
37 my $str = $Namae; $str =~ s/¾®»ô ÃÆ/Dan Kogai/o;
38 is($str, $Name, q{regex});
39 $str = $Namae; $str =~ s/$Namae/Dan Kogai/o;
40 is($str, $Name, q{regex - with variable});
41 is(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
53 is(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
60 ok(! 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 }
68 ok(! defined(${^ENCODING}), q{out of black magic});
69 use bytes;
70 is (length($Namae), 10);
71 1;
72 __END__
73
74