diff options
author | Paul Marquess <paul.marquess@btinternet.com> | 2006-12-29 20:50:26 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-12-30 05:55:53 +0000 |
commit | f6fd7794b9baf00eb9b1d47e4ad481f2e8866e76 (patch) | |
tree | 2caa94f5eb3d6ee23b0a6aaf07ae936066acae5c /ext/Compress/Zlib/t | |
parent | f8babb2524be4b18ced06634d930c03291c1f313 (diff) | |
download | perl-f6fd7794b9baf00eb9b1d47e4ad481f2e8866e76.tar.gz |
Update Compress Modules to version 2.002
From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
Message-ID: <000501c72b8a$f96b2ba0$6401a8c0@myopwv.com>
p4raw-id: //depot/perl@29641
Diffstat (limited to 'ext/Compress/Zlib/t')
-rw-r--r-- | ext/Compress/Zlib/t/03zlib-v1.t | 83 | ||||
-rw-r--r-- | ext/Compress/Zlib/t/14gzopen.t | 3 |
2 files changed, 79 insertions, 7 deletions
diff --git a/ext/Compress/Zlib/t/03zlib-v1.t b/ext/Compress/Zlib/t/03zlib-v1.t index c98de63b0d..0ad5440625 100644 --- a/ext/Compress/Zlib/t/03zlib-v1.t +++ b/ext/Compress/Zlib/t/03zlib-v1.t @@ -23,10 +23,10 @@ BEGIN my $count = 0 ; if ($] < 5.005) { - $count = 353 ; + $count = 383 ; } else { - $count = 364 ; + $count = 394 ; } @@ -494,7 +494,7 @@ EOM { title "Check all bytes can be handled"; - my $lex = "\r\n" . new LexFile my $name ; + my $lex = new LexFile my $name ; my $data = join '', map { chr } 0x00 .. 0xFF; $data .= "\r\nabd\r\n"; @@ -801,10 +801,10 @@ EOM ok $@ =~ /^gzopen: file parameter is not a filehandle or filename at/ or print "# $@\n" ; - my $x = Symbol::gensym() ; - eval { gzopen($x, 0) ; } ; - ok $@ =~ /^gzopen: file parameter is not a filehandle or filename at/ - or print "# $@\n" ; +# my $x = Symbol::gensym() ; +# eval { gzopen($x, 0) ; } ; +# ok $@ =~ /^gzopen: file parameter is not a filehandle or filename at/ +# or print "# $@\n" ; } @@ -1090,5 +1090,74 @@ EOM } +sub slurp +{ + my $name = shift ; + + my $input; + my $fil = gzopen($name, "rb") ; + ok $fil , "opened $name"; + cmp_ok $fil->gzread($input, 50000), ">", 0, "read more than zero bytes"; + ok ! $fil->gzclose(), "closed ok"; + + return $input; +} + +sub trickle +{ + my $name = shift ; + + my $got; + my $input; + $fil = gzopen($name, "rb") ; + ok $fil, "opened ok"; + while ($fil->gzread($input, 50000) > 0) + { + $got .= $input; + $input = ''; + } + ok ! $fil->gzclose(), "closed ok"; + return $got; + return $input; +} + +{ + + title "Append & MultiStream Tests"; + # rt.24041 + + my $lex = new LexFile my $name ; + my $data1 = "the is the first"; + my $data2 = "and this is the second"; + my $trailing = "some trailing data"; + + my $fil; + + title "One file"; + $fil = gzopen($name, "wb") ; + ok $fil, "opened first file"; + is $fil->gzwrite($data1), length $data1, "write data1" ; + ok ! $fil->gzclose(), "Closed"; + + is slurp($name), $data1, "got expected data from slurp"; + is trickle($name), $data1, "got expected data from trickle"; + + title "Two files"; + $fil = gzopen($name, "ab") ; + ok $fil, "opened second file"; + is $fil->gzwrite($data2), length $data2, "write data2" ; + ok ! $fil->gzclose(), "Closed"; + + is slurp($name), $data1 . $data2, "got expected data from slurp"; + is trickle($name), $data1 . $data2, "got expected data from trickle"; + + title "Trailing Data"; + open F, ">>$name"; + print F $trailing; + close F; + + is slurp($name), $data1 . $data2 . $trailing, "got expected data from slurp" ; + is trickle($name), $data1 . $data2 . $trailing, "got expected data from trickle" ; +} diff --git a/ext/Compress/Zlib/t/14gzopen.t b/ext/Compress/Zlib/t/14gzopen.t index bade158abd..f8011e59ff 100644 --- a/ext/Compress/Zlib/t/14gzopen.t +++ b/ext/Compress/Zlib/t/14gzopen.t @@ -486,6 +486,9 @@ foreach my $stdio ( ['-', '-'], [*STDIN, *STDOUT]) SKIP: { my $lex = new LexFile my $name ; + skip "Cannot create non-readable file", 3 + if $^O eq 'cygwin'; + writeFile($name, "abc"); chmod 0222, $name ; |