summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-01-08 11:00:08 +0100
committerDaniel Friesel <derf@finalrewind.org>2017-01-08 11:00:08 +0100
commit4e41adb0c75f04f4cb8a1a022d218632f9e63e49 (patch)
treed918142918ec3587a5b9ea3f398cc041bc82c2ea
parent3e1c0beab99f54157629a398332008d36dae0c9e (diff)
More tests
-rw-r--r--t/29-app-hashl.t8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/29-app-hashl.t b/t/29-app-hashl.t
index 8eb0ac9..3590881 100644
--- a/t/29-app-hashl.t
+++ b/t/29-app-hashl.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.010;
-use Test::More tests => 38;
+use Test::More tests => 41;
use_ok('App::Hashl');
@@ -22,6 +22,9 @@ is($hashl->si_size(1023), '1023.0 ', 'si_size 1023 = 1023');
is($hashl->si_size(1024), ' 1.0k', 'si_size 1024 = 1k');
is($hashl->si_size(2048), ' 2.0k', 'si_size 2048 = 2k');
+is($hashl->si_size(1024 * 1024), ' 1.0M', 'si_size 1024^2 = 1M');
+is($hashl->si_size(0), 'infinite', 'si_size 0 = infinite');
+
is($hashl->hash_in_db('123'), undef, 'hash not in db');
is($hashl->file_in_db('t/in/4'), undef, 'file not in db');
@@ -113,10 +116,13 @@ undef $hashl;
my $hash_512 = App::Hashl->new(read_size => 512)->hash_file('t/in/1k');
my $hash_1k = App::Hashl->new(read_size => 1024)->hash_file('t/in/1k');
my $hash_2k = App::Hashl->new(read_size => 2048)->hash_file('t/in/1k');
+my $hash_inf = App::Hashl->new(read_size => 0)->hash_file('t/in/1k');
my $hash_1k_half = App::Hashl->new()->hash_file('t/in/1k-firsthalf');
is($hash_1k, $hash_2k,
'Same hash for read_size > filesize and read_size == file_size');
+is($hash_1k, $hash_inf,
+ 'Same hash for read_size == inf and read_size == file_size');
isnt($hash_512, $hash_1k, 'Partial hashing does not hash full file');
is($hash_512, $hash_1k_half, 'Partial hashing produces correct hash');