Add a lot of tests for combinations of values, offsets and lengths
[p5sagit/p5-mst-13.2.git] / t / op / read.t
CommitLineData
a687059c 1#!./perl
2
79072805 3# $RCSfile: read.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:17 $
a687059c 4
1a24607b 5BEGIN {
6 chdir 't';
7 @INC = '../lib';
8 require './test.pl';
9}
10use strict;
a687059c 11
69938bba 12plan tests => 516;
a687059c 13
dc459aad 14open(FOO,'op/read.t') || open(FOO,'t/op/read.t') || open(FOO,':op:read.t') || die "Can't open op.read";
1a24607b 15seek(FOO,4,0) or die "Seek failed: $!";
16my $buf;
17my $got = read(FOO,$buf,4);
a687059c 18
1a24607b 19is ($got, 4);
20is ($buf, "perl");
a687059c 21
a0d0e21e 22seek (FOO,0,2) || seek(FOO,20000,0);
a687059c 23$got = read(FOO,$buf,4);
24
1a24607b 25is ($got, 0);
26is ($buf, "");
69938bba 27
28my $tmpfile = 'Op_read.tmp';
29
301 while unlink $tmpfile;
31
32my (@values, @buffers) = ('', '');
33
34foreach (65, 161) { # , 253, 9786) {
35 push @values, join "", map {chr $_} $_ .. $_ + 4;
36 push @buffers, join "", map {chr $_} $_ + 5 .. $_ + 20;
37}
38
39foreach my $value (@values) {
40 foreach my $initial_buffer (@buffers) {
41 my @utf8 = 1;
42 if ($value !~ tr/\0-\377//c) {
43 # It's all 8 bit
44 unshift @utf8, 0;
45 }
46 # foreach my $utf8 (@utf8) {
47 1 while unlink $tmpfile;
48 open FH, ">$tmpfile" or die "Can't open $tmpfile: $!";
49 print FH $value;
50 close FH;
51 foreach my $offset (0, 3, 7, 22, -1, -3, -5, -7) {
52 foreach my $length (0, 2, 5, 10) {
53 # Will read the lesser of the length of the file and the read
54 # length
55 my $will_read = $value;
56 if ($length < length $will_read) {
57 substr ($will_read, $length) = '';
58 }
59 # Going to trash this so need a copy
60 my $buffer = $initial_buffer;
61
62 my $expect = $buffer;
63 if ($offset > 0) {
64 # Right pad with NUL bytes
65 $expect .= "\0" x $offset;
66 substr ($expect, $offset) = '';
67 }
68 substr ($expect, $offset) = $will_read;
69
70 open FH, $tmpfile or die "Can't open $tmpfile: $!";
71 printf "# %d into %d l $length o $offset\n",
72 ord $value, ord $buffer;
73 $got = read (FH, $buffer, $length, $offset);
74 is ($got, length $will_read);
75 is ($buffer, $expect);
76 }
77 }
78 # }
79 }
80}
81
82
83