Help language development. Donate to The Perl Foundation

Libarchive cpan:CTILMES last updated on 2019-07-08

t/06-simple-tar-channel.t6
use Test;
use Libarchive::Write;
use Libarchive::Read;
use File::Temp;

plan 2;

my $content = "This is some content\n";

my Channel $channel .= new;

subtest 'write archive',
{
    plan 3;

    isa-ok my $archive = Libarchive::Write.new($channel,
                                               format => 'paxr',
                                               filter => 'gzip'),
        Libarchive::Write, 'open writer';

    ok $archive.write('afile', $content), 'Write a file';

    ok $archive.close(), 'close writer';
}

subtest 'read archive',
{
    plan 6;

    isa-ok my $archive = Libarchive::Read.new($channel),
        Libarchive::Read, 'open reader';

    isa-ok my $file = $archive.read,
        Libarchive::Entry::Read, 'read file';

    is $file.pathname, 'afile', 'pathname';
    is $file.size, $content.encode.bytes, 'size';
    is $file.content, $content, 'content';

    ok $archive.close(), 'close reader';
}

done-testing;