This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Since we no longer autovivify stashes (change #26370), we need
[perl5.git] / t / op / read.t
1 #!./perl
2
3 BEGIN {
4     chdir 't';
5     @INC = '../lib';
6     require './test.pl';
7 }
8 use strict;
9
10 plan tests => 2564;
11
12 open(FOO,'op/read.t') || open(FOO,'t/op/read.t') || open(FOO,':op:read.t') || die "Can't open op.read";
13 seek(FOO,4,0) or die "Seek failed: $!";
14 my $buf;
15 my $got = read(FOO,$buf,4);
16
17 is ($got, 4);
18 is ($buf, "perl");
19
20 seek (FOO,0,2) || seek(FOO,20000,0);
21 $got = read(FOO,$buf,4);
22
23 is ($got, 0);
24 is ($buf, "");
25
26 # This is true if Config is not built, or if PerlIO is enabled
27 # ie assume that PerlIO is present, unless we know for sure otherwise.
28 my $has_perlio = !eval {
29     no warnings;
30     require Config;
31     !$Config::Config{useperlio}
32 };
33
34 my $tmpfile = 'Op_read.tmp';
35
36 END { 1 while unlink $tmpfile }
37
38 my (@values, @buffers) = ('', '');
39
40 foreach (65, 161, 253, 9786) {
41     push @values, join "", map {chr $_} $_ .. $_ + 4;
42     push @buffers, join "", map {chr $_} $_ + 5 .. $_ + 20;
43 }
44 my @offsets = (0, 3, 7, 22, -1, -3, -5, -7);
45 my @lengths = (0, 2, 5, 10);
46
47 foreach my $value (@values) {
48     foreach my $initial_buffer (@buffers) {
49         my @utf8 = 1;
50         if ($value !~ tr/\0-\377//c) {
51             # It's all 8 bit
52             unshift @utf8, 0;
53         }
54       SKIP:
55         foreach my $utf8 (@utf8) {
56             skip "Needs :utf8 layer but no perlio", 2 * @offsets * @lengths
57               if $utf8 and !$has_perlio;
58
59             1 while unlink $tmpfile;
60             open FH, ">$tmpfile" or die "Can't open $tmpfile: $!";
61             binmode FH, "utf8" if $utf8;
62             print FH $value;
63             close FH;
64             foreach my $offset (@offsets) {
65                 foreach my $length (@lengths) {
66                     # Will read the lesser of the length of the file and the
67                     # read length
68                     my $will_read = $value;
69                     if ($length < length $will_read) {
70                         substr ($will_read, $length) = '';
71                     }
72                     # Going to trash this so need a copy
73                     my $buffer = $initial_buffer;
74
75                     my $expect = $buffer;
76                     if ($offset > 0) {
77                         # Right pad with NUL bytes
78                         $expect .= "\0" x $offset;
79                         substr ($expect, $offset) = '';
80                     }
81                     substr ($expect, $offset) = $will_read;
82
83                     open FH, $tmpfile or die "Can't open $tmpfile: $!";
84                     binmode FH, "utf8" if $utf8;
85                     my $what = sprintf "%d into %d l $length o $offset",
86                         ord $value, ord $buffer;
87                     $what .= ' u' if $utf8;
88                     $got = read (FH, $buffer, $length, $offset);
89                     is ($got, length $will_read, "got $what");
90                     is ($buffer, $expect, "buffer $what");
91                     close FH;
92                 }
93             }
94         }
95     }
96 }
97
98
99