Commit | Line | Data |
---|---|---|
ec28694c JH |
1 | BEGIN { |
2 | chdir 't' if -d 't'; | |
3 | @INC = '../lib'; | |
4 | require Config; import Config; | |
6b5da1a3 | 5 | unless (find PerlIO::Layer 'perlio') { |
dc87d25e | 6 | print "1..0 # Skip: PerlIO not used\n"; |
ec28694c JH |
7 | exit 0; |
8 | } | |
0214bff6 | 9 | require './test.pl'; |
ec28694c JH |
10 | } |
11 | ||
86cb0d30 | 12 | plan tests => 40; |
ec28694c | 13 | |
51f12e47 | 14 | use_ok('PerlIO'); |
ec28694c JH |
15 | |
16 | my $txt = "txt$$"; | |
17 | my $bin = "bin$$"; | |
18 | my $utf = "utf$$"; | |
26e8050a | 19 | my $nonexistent = "nex$$"; |
ec28694c JH |
20 | |
21 | my $txtfh; | |
22 | my $binfh; | |
23 | my $utffh; | |
24 | ||
51f12e47 | 25 | ok(open($txtfh, ">:crlf", $txt)); |
ec28694c | 26 | |
51f12e47 | 27 | ok(open($binfh, ">:raw", $bin)); |
ec28694c | 28 | |
51f12e47 | 29 | ok(open($utffh, ">:utf8", $utf)); |
ec28694c JH |
30 | |
31 | print $txtfh "foo\n"; | |
32 | print $txtfh "bar\n"; | |
51f12e47 JH |
33 | |
34 | ok(close($txtfh)); | |
ec28694c JH |
35 | |
36 | print $binfh "foo\n"; | |
37 | print $binfh "bar\n"; | |
51f12e47 JH |
38 | |
39 | ok(close($binfh)); | |
ec28694c JH |
40 | |
41 | print $utffh "foo\x{ff}\n"; | |
42 | print $utffh "bar\x{abcd}\n"; | |
ec28694c | 43 | |
51f12e47 JH |
44 | ok(close($utffh)); |
45 | ||
46 | ok(open($txtfh, "<:crlf", $txt)); | |
47 | ||
48 | ok(open($binfh, "<:raw", $bin)); | |
49 | ||
50 | ||
51 | ok(open($utffh, "<:utf8", $utf)); | |
ec28694c | 52 | |
51f12e47 JH |
53 | is(scalar <$txtfh>, "foo\n"); |
54 | is(scalar <$txtfh>, "bar\n"); | |
ec28694c | 55 | |
51f12e47 JH |
56 | is(scalar <$binfh>, "foo\n"); |
57 | is(scalar <$binfh>, "bar\n"); | |
ec28694c | 58 | |
51f12e47 JH |
59 | is(scalar <$utffh>, "foo\x{ff}\n"); |
60 | is(scalar <$utffh>, "bar\x{abcd}\n"); | |
ec28694c | 61 | |
51f12e47 | 62 | ok(eof($txtfh));; |
ec28694c | 63 | |
51f12e47 | 64 | ok(eof($binfh)); |
ec28694c | 65 | |
51f12e47 | 66 | ok(eof($utffh)); |
ec28694c | 67 | |
51f12e47 | 68 | ok(close($txtfh)); |
ec28694c | 69 | |
51f12e47 | 70 | ok(close($binfh)); |
ec28694c | 71 | |
51f12e47 | 72 | ok(close($utffh)); |
ec28694c | 73 | |
51f12e47 JH |
74 | # magic temporary file via 3 arg open with undef |
75 | { | |
76 | ok( open(my $x,"+<",undef), 'magic temp file via 3 arg open with undef'); | |
77 | ok( defined fileno($x), ' fileno' ); | |
78 | ||
79 | select $x; | |
80 | ok( (print "ok\n"), ' print' ); | |
81 | ||
82 | select STDOUT; | |
83 | ok( seek($x,0,0), ' seek' ); | |
84 | is( scalar <$x>, "ok\n", ' readline' ); | |
85 | ok( tell($x) >= 3, ' tell' ); | |
86 | ||
87 | # test magic temp file over STDOUT | |
88 | open OLDOUT, ">&STDOUT" or die "cannot dup STDOUT: $!"; | |
89 | my $status = open(STDOUT,"+<",undef); | |
90 | open STDOUT, ">&OLDOUT" or die "cannot dup OLDOUT: $!"; | |
91 | # report after STDOUT is restored | |
92 | ok($status, ' re-open STDOUT'); | |
93 | close OLDOUT; | |
26e8050a NT |
94 | |
95 | SKIP: { | |
96 | skip("TMPDIR not honored on this platform", 2) | |
97 | if !$Config{d_mkstemp} | |
98 | || $^O eq 'VMS' || $^O eq 'MSwin32' || $^O eq 'os2'; | |
99 | local $ENV{TMPDIR} = $nonexistent; | |
0b99e986 | 100 | ok( open(my $x,"+<",undef), 'TMPDIR honored by magic temp file via 3 arg open with undef - works if TMPDIR points to a non-existent dir'); |
26e8050a NT |
101 | |
102 | mkdir $ENV{TMPDIR}; | |
103 | ok(open(my $x,"+<",undef), 'TMPDIR honored by magic temp file via 3 arg open with undef - works if TMPDIR points to an existent dir'); | |
104 | } | |
51f12e47 JH |
105 | } |
106 | ||
107 | # in-memory open | |
0cb48d00 RGS |
108 | SKIP: { |
109 | eval { require PerlIO::scalar }; | |
110 | unless (find PerlIO::Layer 'scalar') { | |
8a71e97e | 111 | skip("PerlIO::scalar not found", 9); |
0cb48d00 | 112 | } |
51f12e47 JH |
113 | my $var; |
114 | ok( open(my $x,"+<",\$var), 'magic in-memory file via 3 arg open with \\$var'); | |
115 | ok( defined fileno($x), ' fileno' ); | |
116 | ||
117 | select $x; | |
118 | ok( (print "ok\n"), ' print' ); | |
119 | ||
120 | select STDOUT; | |
121 | ok( seek($x,0,0), ' seek' ); | |
122 | is( scalar <$x>, "ok\n", ' readline' ); | |
123 | ok( tell($x) >= 3, ' tell' ); | |
124 | ||
125 | TODO: { | |
126 | local $TODO = "broken"; | |
127 | ||
128 | # test in-memory open over STDOUT | |
129 | open OLDOUT, ">&STDOUT" or die "cannot dup STDOUT: $!"; | |
130 | #close STDOUT; | |
131 | my $status = open(STDOUT,">",\$var); | |
132 | my $error = "$!" unless $status; # remember the error | |
3351db02 | 133 | close STDOUT unless $status; |
51f12e47 JH |
134 | open STDOUT, ">&OLDOUT" or die "cannot dup OLDOUT: $!"; |
135 | print "# $error\n" unless $status; | |
136 | # report after STDOUT is restored | |
137 | ok($status, ' open STDOUT into in-memory var'); | |
138 | ||
139 | # test in-memory open over STDERR | |
140 | open OLDERR, ">&STDERR" or die "cannot dup STDERR: $!"; | |
141 | #close STDERR; | |
142 | ok( open(STDERR,">",\$var), ' open STDERR into in-memory var'); | |
143 | open STDERR, ">&OLDERR" or die "cannot dup OLDERR: $!"; | |
144 | } | |
ec28694c | 145 | |
ec28694c | 146 | |
86cb0d30 JV |
147 | { local $TODO = 'fails well back into 5.8.x'; |
148 | ||
149 | ||
150 | sub read_fh_and_return_final_rv { | |
151 | my ($fh) = @_; | |
152 | my $buf = ''; | |
153 | my $rv; | |
154 | for (1..3) { | |
155 | $rv = read($fh, $buf, 1, length($buf)); | |
156 | next if $rv; | |
157 | } | |
158 | return $rv | |
159 | } | |
160 | ||
161 | open(my $no_perlio, '<', \'ab') or die; | |
162 | open(my $perlio, '<:crlf', \'ab') or die; | |
163 | ||
164 | is(read_fh_and_return_final_rv($perlio), read_fh_and_return_final_rv($no_perlio), "RT#69332 - perlio should return the same value as nonperlio after EOF"); | |
165 | ||
166 | close ($perlio); | |
167 | close ($no_perlio); | |
168 | } | |
169 | ||
8a71e97e Z |
170 | } |
171 | ||
86cb0d30 | 172 | |
ec28694c JH |
173 | END { |
174 | 1 while unlink $txt; | |
175 | 1 while unlink $bin; | |
176 | 1 while unlink $utf; | |
0b99e986 | 177 | rmdir $nonexistent; |
ec28694c JH |
178 | } |
179 |