1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
use strict;
use warnings;
use IO::Zlib;
sub ok
{
my ($no, $ok) = @_ ;
print "ok $no\n" if $ok ;
print "not ok $no\n" unless $ok ;
}
my $name = "test.gz";
print "1..23\n";
my @text = (<<EOM, <<EOM, <<EOM, <<EOM) ;
this is line 1
EOM
the second line
EOM
the line after the previous line
EOM
the final line
EOM
my $text = join("", @text) ;
my $file;
ok(1, $file = IO::Zlib->new($name, "wb"));
ok(2, $file->print($text));
ok(3, $file->close());
ok(4, $file = IO::Zlib->new($name, "rb"));
ok(5, !$file->eof());
ok(6, $file->getline() eq $text[0]);
ok(7, $file->getline() eq $text[1]);
ok(8, $file->getline() eq $text[2]);
ok(9, $file->getline() eq $text[3]);
ok(10, !defined($file->getline()));
ok(11, $file->eof());
ok(12, $file->close());
my @lines;
ok(13, $file = IO::Zlib->new($name, "rb"));
ok(14, !$file->eof());
eval '$file->getlines';
ok(15, $@ =~ /^IO::Zlib::getlines: must be called in list context /);
ok(16, @lines = $file->getlines());
ok(17, @lines == @text);
ok(18, $lines[0] eq $text[0]);
ok(19, $lines[1] eq $text[1]);
ok(20, $lines[2] eq $text[2]);
ok(21, $lines[3] eq $text[3]);
ok(22, $file->eof());
ok(23, $file->close());
unlink($name);
|