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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
use lib 't';
use strict;
use warnings;
use bytes;
use Test::More ;
use CompTestUtils;
sub run
{
my $CompressClass = identify();
my $UncompressClass = getInverse($CompressClass);
my $Error = getErrorRef($CompressClass);
my $UnError = getErrorRef($UncompressClass);
# my $hello = <<EOM ;
#hello world
#this is a test
#some more stuff on this line
#and finally...
#EOM
# ASCII hex equivalent of the text above. This makes the test
# harness behave identically on an EBCDIC platform.
my $hello =
"\x68\x65\x6c\x6c\x6f\x20\x77\x6f\x72\x6c\x64\x0a\x74\x68\x69\x73" .
"\x20\x69\x73\x20\x61\x20\x74\x65\x73\x74\x0a\x73\x6f\x6d\x65\x20" .
"\x6d\x6f\x72\x65\x20\x73\x74\x75\x66\x66\x20\x6f\x6e\x20\x74\x68" .
"\x69\x73\x20\x6c\x69\x6e\x65\x0a\x61\x6e\x64\x20\x66\x69\x6e\x61" .
"\x6c\x6c\x79\x2e\x2e\x2e\x0a" ;
my $blocksize = 10 ;
my ($info, $compressed) = mkComplete($CompressClass, $hello);
my $header_size = $info->{HeaderLength};
my $trailer_size = $info->{TrailerLength};
my $fingerprint_size = $info->{FingerprintLength};
ok 1, "Compressed size is " . length($compressed) ;
ok 1, "Fingerprint size is $fingerprint_size" ;
ok 1, "Header size is $header_size" ;
ok 1, "Trailer size is $trailer_size" ;
for my $trans ( 0 .. 1)
{
title "Truncating $CompressClass, Transparent $trans";
foreach my $i (1 .. $fingerprint_size-1)
{
my $lex = new LexFile my $name ;
title "Fingerprint Truncation - length $i, Transparent $trans";
my $part = substr($compressed, 0, $i);
writeFile($name, $part);
my $gz = new $UncompressClass $name,
-BlockSize => $blocksize,
-Transparent => $trans;
if ($trans) {
ok $gz;
ok ! $gz->error() ;
my $buff ;
is $gz->read($buff, 5000), length($part) ;
ok $buff eq $part ;
ok $gz->eof() ;
$gz->close();
}
else {
ok !$gz;
}
}
#
# Any header corruption past the fingerprint is considered catastrophic
# so even if Transparent is set, it should still fail
#
foreach my $i ($fingerprint_size .. $header_size -1)
{
my $lex = new LexFile my $name ;
title "Header Truncation - length $i, Transparent $trans";
my $part = substr($compressed, 0, $i);
writeFile($name, $part);
ok ! defined new $UncompressClass $name,
-BlockSize => $blocksize,
-Transparent => $trans;
#ok $gz->eof() ;
}
foreach my $i ($header_size .. length($compressed) - 1 - $trailer_size)
{
next if $i == 0 ;
my $lex = new LexFile my $name ;
title "Compressed Data Truncation - length $i, Transparent $trans";
my $part = substr($compressed, 0, $i);
writeFile($name, $part);
ok my $gz = new $UncompressClass $name,
-Strict => 1,
-BlockSize => $blocksize,
-Transparent => $trans
or diag $$UnError;
my $un ;
my $status = 1 ;
$status = $gz->read($un) while $status > 0 ;
cmp_ok $status, "<", 0 ;
ok $gz->error() ;
ok $gz->eof() ;
$gz->close();
}
# RawDeflate does not have a trailer
next if $CompressClass eq 'IO::Compress::RawDeflate' ;
title "Compressed Trailer Truncation";
foreach my $i (length($compressed) - $trailer_size .. length($compressed) -1 )
{
foreach my $lax (0, 1)
{
my $lex = new LexFile my $name ;
ok 1, "Compressed Trailer Truncation - Length $i, Lax $lax, Transparent $trans" ;
my $part = substr($compressed, 0, $i);
writeFile($name, $part);
ok my $gz = new $UncompressClass $name,
-BlockSize => $blocksize,
-Strict => !$lax,
-Append => 1,
-Transparent => $trans;
my $un = '';
my $status = 1 ;
$status = $gz->read($un) while $status > 0 ;
if ($lax)
{
is $un, $hello;
is $status, 0
or diag "Status $status Error is " . $gz->error() ;
ok $gz->eof()
or diag "Status $status Error is " . $gz->error() ;
ok ! $gz->error() ;
}
else
{
cmp_ok $status, "<", 0
or diag "Status $status Error is " . $gz->error() ;
ok $gz->eof()
or diag "Status $status Error is " . $gz->error() ;
ok $gz->error() ;
}
$gz->close();
}
}
}
}
1;
|