Archive-Probe

 view release on metacpan or  search on metacpan

t/directory_test.t  view on Meta::CPAN

#!/usr/bin/perl -w
# Test case for nested archive.
#
# Author:          JustinZhang <fgz@qad.com>
# Creation Date:   2013-05-13
#
#
BEGIN {
    if (-d 't') {
        # running from the base directory
        push @INC, 't';
    }
}
use strict;
use Cwd;
use File::Path;
use File::Spec::Functions qw(rel2abs updir catdir catfile);
use File::Temp qw(tempdir);
use Test::More qw(no_plan);
use TestBase;
use Archive::Probe;

my $test_data_dir = get_test_data_dir();
my $test_data_no = 'tc1';
my $map = {};
my $tmpdir = tempdir('_arXXXXXXXX', DIR => File::Spec->tmpdir());
my $probe = Archive::Probe->new();
SKIP: {
    skip "unrar is not installed", 4 unless $probe->_is_cmd_avail('unrar');

    $probe->working_dir($tmpdir);
    $probe->add_pattern(
        'version.abc',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{version} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{version} = '';
            }
    });
    $probe->add_pattern(
        'target.abc',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{target} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{target} = '';
            }
    });
    my $base_dir = catdir($test_data_dir, $test_data_no);
    $probe->reset_matches();
    $probe->search($base_dir, 1);

    # verify that the target.abc file is found
    my $exp = catfile('rar_w_dir.rar__', 'leading_dir', 'target.abc');
    is(
        $map->{target},
        $exp,
        'file search in rar'
    );
    my $a = catfile($tmpdir, 'rar_w_dir.rar__', 'leading_dir', 'target.abc');
    ok(-f $a, 'existence of target.abc');

    # verify that the version.abc file is found
    $exp = catdir('rar_wo_dir.rar__', 'version.abc');
    is(
        $map->{version},
        $exp,
        'toplevel file search in rar'
    );
    my $b = catfile($tmpdir, 'rar_wo_dir.rar__', 'version.abc');
    ok(-f $b, 'existence of version.abc');
}

SKIP: {
    skip "unzip is not installed", 4 unless $probe->_is_cmd_avail('unzip');

    $probe->working_dir($tmpdir);
    $probe->add_pattern(
        'config\.xml',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{xml} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{xml} = '';
            }
    });
    $probe->add_pattern(
        'index\.jsp',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{jsp} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{jsp} = '';
            }
    });
    my $base_dir = catdir($test_data_dir, $test_data_no);
    $probe->reset_matches();
    $probe->search($base_dir, 1);

    # verify that the target.abc file is found
    my $exp = catfile('webapp.zip__', 'WEB-INF', 'config.xml');
    is(
        $map->{xml},
        $exp,
        'file search in zip'
    );
    my $a = catfile($tmpdir, 'webapp.zip__', 'WEB-INF', 'config.xml');
    ok(-f $a, 'existence of config.xml');

    # verify that the index.jsp file is found
    $exp = catdir('webapp.zip__', 'index.jsp');
    is(
        $map->{jsp},
        $exp,
        'toplevel file search in zip'
    );
    my $b = catfile($tmpdir, 'webapp.zip__', 'index.jsp');
    ok(-f $b, 'existence of index.jsp');
}

SKIP: {
    skip "tar is not installed", 4 unless $probe->_is_cmd_avail('tar');

    $probe->working_dir($tmpdir);
    $probe->add_pattern(
        'manifest\.mf',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{mf} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{mf} = '';
            }
    });
    $probe->add_pattern(
        '404\.jsp',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{404} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{404} = '';
            }
    });
    $probe->add_pattern(
        'readme\.txt',
        sub {
            my ($pattern, $file_ref) = @_;

            if (@$file_ref) {
                $map->{txt} = $probe->_strip_dir($tmpdir, $file_ref->[0]);
            }
            else {
                $map->{txt} = '';
            }
    });
    my $base_dir = catdir($test_data_dir, $test_data_no);
    $probe->reset_matches();
    $probe->search($base_dir, 1);

    # verify that the manifest.mf file is found
    my $exp = catfile('dir1', 'a.tgz__', 'META-INF', 'manifest.mf');
    is(
        $map->{mf},
        $exp,
        'file search in tgz under sub-directory'
    );
    my $a = catfile($tmpdir, 'dir1', 'a.tgz__', 'META-INF', 'manifest.mf');
    ok(-f $a, 'existence of manifest.mf');

    # verify that the 404.jsp file is found
    $exp = catdir('dir1', 'a.tgz__', '404.jsp');
    is(
        $map->{404},
        $exp,
        'toplevel file search in tgz under sub-directory'
    );
    my $b = catfile($tmpdir, 'dir1', 'a.tgz__', '404.jsp');
    ok(-f $b, 'existence of 404.jsp');

    # verify that the readme.txt file is found
    $exp = catfile('dir2', 'readme.txt');
    is(
        $map->{txt},
        $exp,
        'unarchived file search in sub-directory'
    );
    my $c = catfile($tmpdir, 'dir2', 'readme.txt');
    ok(-f $c, 'existence of readme.txt');

}

# cleanup the temp directory to free disk space
rmtree($tmpdir);

# vim: set ai nu nobk expandtab sw=4 ts=4:



( run in 2.893 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )