aboutsummaryrefslogtreecommitdiffstats
path: root/t/01packdrakeng.t
blob: 27f05270464824cf3987f5c62bc8a03fdbf66090 (plain)
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
#!/usr/bin/perl

# $Id$

use Test::More tests => 16;
use Digest::MD5;

use_ok('packdrakeng');

sub clean_test_files {
    -d "test" or return;
    unlink glob("test/*");
}

# 
sub create_test_files {
    my ($number) = @_;
    my %created;
    -d test or mkdir test;
    foreach my $n (1 .. $number||10) {
        my $size = int(rand(1024));
        # push(@created, "test/$size");
        system("dd if=/dev/urandom of=test/$size bs=1024 count=$size >/dev/null 2>&1");
        open(my $h, "test/$size");
        $created{"test/$size"} = Digest::MD5->new->addfile($h)->hexdigest;
        close $h;
    }
    %created 
}

sub create_know_file {
    foreach my $letter (a..z) {
    open(my $h, "> test/$letter");
    foreach (1 .. 3456) {
        printf $h "%s\n", $letter x 33;
    }
    close($h);
    open($h, "test/$letter");
    $created{"test/$letter"} = Digest::MD5->new->addfile($h)->hexdigest;
    close($h);
    }
    %created
}

sub check_files {
    my %files = @_;
    my $ok = 1;
    foreach my $f (keys %files) {
        open(my $h, $f);
        Digest::MD5->new->addfile($h)->hexdigest ne $files{$f} and do {
            print STDERR "$f differ\n";
            $ok = 0;
        };
        close $h;
    }
    $ok
}

###################################
#                                 #
# Test series, packing, unpacking #
#                                 #
###################################

sub test_packing {
    my ($pack_param, $listfiles) = @_;

    ok(my $pack = packdrakeng->new(%$pack_param), "Creating an archive");
    ok($pack->add(undef, keys %$listfiles), "packing files");
    $pack = undef; # closing the archive.
    
    clean_test_files();
    
    ok($pack = packdrakeng->open(%$pack_param), "Re-opening the archive");
    ok($pack->extract(undef, keys(%createdfiles)), "extracting files");
    ok(check_files(%createdfiles), "Checking md5sum for extracted files");

    $pack = undef;
}

print "Test: using internal gzip function:\n";
    clean_test_files();
    test_packing({ archive => "packtest.cz" }, { create_test_files(30) });
    clean_test_files();
    unlink("packtest.cz");

print "Test: using external gzip function:\n";
    clean_test_files();
    test_packing({ archive => "packtest.cz", compress => "gzip", extern => 1}, { create_test_files(30) });
    clean_test_files();
    unlink("packtest.cz");
    
print "Test: using external bzip function:\n";
    clean_test_files();
    test_packing({ archive => "packtest.cz", compress => "bzip2", extern => 1}, { create_test_files(30) });
    clean_test_files();
    unlink("packtest.cz");