6 push @INC, "::lib:$MacPerl::Architecture:" if $^O eq 'MacOS';
7 require Config; import Config;
10 use Test::More tests => 16;
12 # open::import expects 'open' as its first argument, but it clashes with open()
14 open::import( 'open', @_ );
17 # can't use require_ok() here, with a name like 'open'
18 ok( require 'open.pm', 'requiring open' );
22 like( $@, qr/needs explicit list of disciplines/,
23 'import should fail without args' );
25 # the hint bits shouldn't be set yet
26 is( $^H & $open::hint_bits, 0,
27 'hint bits should not be set in $^H before open import' );
29 # prevent it from loading I18N::Langinfo, so we can test encoding failures
31 local $SIG{__WARN__} = sub {
35 # and it shouldn't be able to find this discipline
37 eval q{ no warnings 'layer'; use open IN => ':macguffin' ; };
39 'should not warn about unknown discipline with bad discipline provided' );
42 eval q{ use warnings 'layer'; use open IN => ':macguffin' ; };
43 like( $warn, qr/Unknown discipline layer/,
44 'should warn about unknown discipline with bad discipline provided' );
47 skip("no perlio, no :utf8", 1) unless (find PerlIO::Layer 'perlio');
48 # now load a real-looking locale
49 $ENV{LC_ALL} = ' .utf8';
50 import( 'IN', 'locale' );
51 like( ${^OPEN}, qr/^(:utf8)?:utf8\0/,
52 'should set a valid locale layer' );
55 # and see if it sets the magic variables appropriately
56 import( 'IN', ':crlf' );
57 ok( $^H & $open::hint_bits,
58 'hint bits should be set in $^H after open import' );
59 is( $^H{'open_IN'}, 'crlf', 'should have set crlf layer' );
61 # it should reset them appropriately, too
62 import( 'IN', ':raw' );
63 is( $^H{'open_IN'}, 'raw', 'should have reset to raw layer' );
65 # it dies if you don't set IN, OUT, or IO
66 eval { import( 'sideways', ':raw' ) };
67 like( $@, qr/Unknown discipline class/, 'should croak with unknown class' );
69 # but it handles them all so well together
70 import( 'IO', ':raw :crlf' );
71 is( ${^OPEN}, ":raw :crlf\0:raw :crlf",
72 'should set multi types, multi disciplines' );
73 is( $^H{'open_IO'}, 'crlf', 'should record last layer set in %^H' );
76 skip("no perlio, no :utf8", 4) unless (find PerlIO::Layer 'perlio');
84 is(ord(<I>), 0x100, ":utf8 single wide character round-trip");
89 @a = map { chr(1 << ($_ << 2)) } 0..5; # 0x1, 0x10, .., 0x100000
90 unshift @a, chr(0); # ... and a null byte in front just for fun
96 sysseek($_[0], 0, SEEK_CUR);
99 require bytes; # not use
103 open F, "<:utf8", "a";
107 ($c = sysread(F, $b, 1)) == 1 &&
109 ord($b) == ord($_) &&
110 systell(F) == ($a += bytes::length($b))
112 print '# ord($_) == ', ord($_), "\n";
113 print '# ord($b) == ', ord($b), "\n";
114 print '# length($b) == ', length($b), "\n";
115 print '# bytes::length($b) == ', bytes::length($b), "\n";
116 print '# systell(F) == ', systell(F), "\n";
117 print '# $a == ', $a, "\n";
118 print '# $c == ', $c, "\n";
125 "on :utf8 streams sysread() should work on characters, not bytes");
127 # syswrite() on should work on characters, not bytes
128 open G, ">:utf8", "b";
132 ($c = syswrite(G, $_, 1)) == 1 &&
133 systell(G) == ($a += bytes::length($_))
135 print '# ord($_) == ', ord($_), "\n";
136 print '# bytes::length($_) == ', bytes::length($_), "\n";
137 print '# systell(G) == ', systell(G), "\n";
138 print '# $a == ', $a, "\n";
139 print '# $c == ', $c, "\n";
147 "on :utf8 streams syswrite() should work on characters, not bytes");
149 open G, "<:utf8", "b";
153 ($c = sysread(G, $b, 1)) == 1 &&
155 ord($b) == ord($_) &&
156 systell(G) == ($a += bytes::length($_))
158 print '# ord($_) == ', ord($_), "\n";
159 print '# ord($b) == ', ord($b), "\n";
160 print '# length($b) == ', length($b), "\n";
161 print '# bytes::length($b) == ', bytes::length($b), "\n";
162 print '# systell(G) == ', systell(G), "\n";
163 print '# $a == ', $a, "\n";
164 print '# $c == ', $c, "\n";
171 "checking syswrite() output on :utf8 streams by reading it back in");
175 1 while unlink "utf8";
180 # the test cases beyond __DATA__ need to be executed separately
183 $ENV{LC_ALL} = 'nonexistent.euc';
184 eval { open::_get_locale_encoding() };
185 like( $@, qr/too ambiguous/, 'should die with ambiguous locale encoding' );
187 # the special :locale layer
188 $ENV{LC_ALL} = $ENV{LANG} = 'ru_RU.KOI8-R';
189 # the :locale will probe the locale environment variables like LANG
190 use open OUT => ':locale';
192 print O chr(0x430); # Unicode CYRILLIC SMALL LETTER A = KOI8-R 0xc1
195 printf "%#x\n", ord(<I>), "\n"; # this should print 0xc1