This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: Réf. : Re: PATCH proposal for ext/Safe/safe2.t
[perl5.git] / lib / open.t
1 #!./perl
2
3 BEGIN {
4         chdir 't' if -d 't';
5         @INC = '../lib';
6         require Config; import Config;
7 }
8
9 use Test::More tests => 15;
10
11 # open::import expects 'open' as its first argument, but it clashes with open()
12 sub import {
13         open::import( 'open', @_ );
14 }
15
16 # can't use require_ok() here, with a name like 'open'
17 ok( require 'open.pm', 'requiring open' );
18
19 # this should fail
20 eval { import() };
21 like( $@, qr/needs explicit list of disciplines/, 
22         'import should fail without args' );
23
24 # the hint bits shouldn't be set yet
25 is( $^H & $open::hint_bits, 0, 
26         'hint bits should not be set in $^H before open import' );
27
28 # prevent it from loading I18N::Langinfo, so we can test encoding failures
29 my $warn;
30 local $SIG{__WARN__} = sub {
31         $warn .= shift;
32 };
33
34 # and it shouldn't be able to find this discipline
35 eval{ import( 'IN', 'macguffin' ) };
36 like( $warn, qr/Unknown discipline layer/, 
37         'should warn about unknown discipline with bad discipline provided' );
38
39 SKIP: {
40     skip("no perlio, no :utf8", 1) unless $Config{useperlio};
41     # now load a real-looking locale
42     $ENV{LC_ALL} = ' .utf8';
43     import( 'IN', 'locale' );
44     is( ${^OPEN}, ":utf8\0", 
45         'should set a valid locale layer' );
46 }
47
48 # and see if it sets the magic variables appropriately
49 import( 'IN', ':crlf' );
50 ok( $^H & $open::hint_bits, 
51         'hint bits should be set in $^H after open import' );
52 is( $^H{'open_IN'}, 'crlf', 'should have set crlf layer' );
53
54 # it should reset them appropriately, too
55 import( 'IN', ':raw' );
56 is( $^H{'open_IN'}, 'raw', 'should have reset to raw layer' );
57
58 # it dies if you don't set IN, OUT, or IO
59 eval { import( 'sideways', ':raw' ) };
60 like( $@, qr/Unknown discipline class/, 'should croak with unknown class' );
61
62 # but it handles them all so well together
63 import( 'IO', ':raw :crlf' );
64 is( ${^OPEN}, ":raw :crlf\0:raw :crlf",
65         'should set multi types, multi disciplines' );
66 is( $^H{'open_IO'}, 'crlf', 'should record last layer set in %^H' );
67
68 SKIP: {
69     skip("no perlio, no :utf8", 4) unless $Config{'useperlio'};
70
71     eval <<EOE;
72     use open ':utf8';
73     open(O, ">utf8");
74     print O chr(0x100);
75     close O;
76     open(I, "<utf8");
77     is(ord(<I>), 0x100, ":utf8 single wide character round-trip");
78     close I;
79 EOE
80
81     open F, ">a";
82     @a = map { chr(1 << ($_ << 2)) } 0..5; # 0x1, 0x10, .., 0x100000
83     unshift @a, chr(0); # ... and a null byte in front just for fun
84     print F @a;
85     close F;
86
87     sub systell {
88         use Fcntl 'SEEK_CUR';
89         sysseek($_[0], 0, SEEK_CUR);
90     }
91
92     require bytes; # not use
93
94     my $ok;
95
96     open F, "<:utf8", "a";
97     $ok = $a = 0;
98     for (@a) {
99         unless (
100                 ($c = sysread(F, $b, 1)) == 1  &&
101                 length($b)               == 1  &&
102                 ord($b)                  == ord($_) &&
103                 systell(F)               == ($a += bytes::length($b))
104                 ) {
105             print '# ord($_)           == ', ord($_), "\n";
106             print '# ord($b)           == ', ord($b), "\n";
107             print '# length($b)        == ', length($b), "\n";
108             print '# bytes::length($b) == ', bytes::length($b), "\n";
109             print '# systell(F)        == ', systell(F), "\n";
110             print '# $a                == ', $a, "\n";
111             print '# $c                == ', $c, "\n";
112             last;
113         }
114         $ok++;
115     }
116     close F;
117     ok($ok == @a,
118        "on :utf8 streams sysread() should work on characters, not bytes");
119
120     # syswrite() on should work on characters, not bytes
121     open G, ">:utf8", "b";
122     $ok = $a = 0;
123     for (@a) {
124         unless (
125                 ($c = syswrite(G, $_, 1)) == 1 &&
126                 systell(G)                == ($a += bytes::length($_))
127                 ) {
128             print '# ord($_)           == ', ord($_), "\n";
129             print '# bytes::length($_) == ', bytes::length($_), "\n";
130             print '# systell(G)        == ', systell(G), "\n";
131             print '# $a                == ', $a, "\n";
132             print '# $c                == ', $c, "\n";
133             print "not ";
134             last;
135         }
136         $ok++;
137     }
138     close G;
139     ok($ok == @a,
140        "on :utf8 streams syswrite() should work on characters, not bytes");
141
142     open G, "<:utf8", "b";
143     $ok = $a = 0;
144     for (@a) {
145         unless (
146                 ($c = sysread(G, $b, 1)) == 1 &&
147                 length($b)               == 1 &&
148                 ord($b)                  == ord($_) &&
149                 systell(G)               == ($a += bytes::length($_))
150                 ) {
151             print '# ord($_)           == ', ord($_), "\n";
152             print '# ord($b)           == ', ord($b), "\n";
153             print '# length($b)        == ', length($b), "\n";
154             print '# bytes::length($b) == ', bytes::length($b), "\n";
155             print '# systell(G)        == ', systell(G), "\n";
156             print '# $a                == ', $a, "\n";
157             print '# $c                == ', $c, "\n";
158             last;
159         }
160         $ok++;
161     }
162     close G;
163     ok($ok == @a,
164        "checking syswrite() output on :utf8 streams by reading it back in");
165 }
166
167 END {
168     1 while unlink "utf8";
169     1 while unlink "a";
170     1 while unlink "b";
171 }
172
173 # the test cases beyond __DATA__ need to be executed separately
174
175 __DATA__
176 $ENV{LC_ALL} = 'nonexistent.euc';
177 eval { open::_get_locale_encoding() };
178 like( $@, qr/too ambiguous/, 'should die with ambiguous locale encoding' );
179 %%%
180 # the special :locale layer
181 $ENV{LC_ALL} = $ENV{LANG} = 'ru_RU.KOI8-R';
182 # the :locale will probe the locale environment variables like LANG
183 use open OUT => ':locale';
184 open(O, ">koi8");
185 print O chr(0x430); # Unicode CYRILLIC SMALL LETTER A = KOI8-R 0xc1
186 close O;
187 open(I, "<koi8");
188 printf "%#x\n", ord(<I>), "\n"; # this should print 0xc1
189 close I;
190 %%%