X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-File-KDBX;a=blobdiff_plain;f=t%2Fhmac-block.t;h=d0488c6ea0bff0894a02f104cf96c0e10565283d;hp=75b467c98691201b32eb9e704697e96e99060eb0;hb=50f1a929d9224b9072b5fae39162a5d943323c5d;hpb=52cf8dbcf4ded14b1582e905cf034749385624b3 diff --git a/t/hmac-block.t b/t/hmac-block.t index 75b467c..d0488c6 100644 --- a/t/hmac-block.t +++ b/t/hmac-block.t @@ -6,9 +6,9 @@ use strict; use lib 't/lib'; use TestCommon qw(:no_warnings_test); +use File::KDBX::IO::HmacBlock; use File::KDBX::Util qw(can_fork); use IO::Handle; -use PerlIO::via::File::KDBX::HmacBlock; use Test::More; my $KEY = "\x01" x 64; @@ -18,16 +18,17 @@ my $KEY = "\x01" x 64; pipe(my $read, my $write) or die "pipe failed: $!\n"; - PerlIO::via::File::KDBX::HmacBlock->push($write, block_size => 3, key => $KEY); + $write = File::KDBX::IO::HmacBlock->new($write, block_size => 3, key => $KEY); print $write $expected_plaintext; - binmode($write, ':pop'); # finish stream close($write) or die "close failed: $!"; - PerlIO::via::File::KDBX::HmacBlock->push($read, key => $KEY); + $read = File::KDBX::IO::HmacBlock->new($read, key => $KEY); my $plaintext = do { local $/; <$read> }; close($read); is $plaintext, $expected_plaintext, 'HMAC-block just a little bit'; + + is $File::KDBX::IO::HmacBlock::ERROR, undef, 'No error when successful'; } SKIP: { @@ -35,40 +36,39 @@ SKIP: { my $expected_plaintext = "\x64" x (1024*1024*12 - 57); + local $SIG{CHLD} = 'IGNORE'; pipe(my $read, my $write) or die "pipe failed: $!\n"; defined(my $pid = fork) or die "fork failed: $!\n"; if ($pid == 0) { - PerlIO::via::File::KDBX::HmacBlock->push($write, key => $KEY); + $write = File::KDBX::IO::HmacBlock->new($write, key => $KEY); print $write $expected_plaintext; - binmode($write, ':pop'); # finish stream close($write) or die "close failed: $!"; - exit; + # exit; + require POSIX; + POSIX::_exit(0); } - PerlIO::via::File::KDBX::HmacBlock->push($read, key => $KEY); + $read = File::KDBX::IO::HmacBlock->new($read, key => $KEY); my $plaintext = do { local $/; <$read> }; close($read); is $plaintext, $expected_plaintext, 'HMAC-block a lot'; - - waitpid($pid, 0) or die "wait failed: $!\n"; } subtest 'Error handling' => sub { pipe(my $read, my $write) or die "pipe failed: $!\n"; - PerlIO::via::File::KDBX::HmacBlock->push($read, key => $KEY); + $read = File::KDBX::IO::HmacBlock->new($read, key => $KEY); print $write 'blah blah blah'; close($write) or die "close failed: $!"; - is $read->error, 0, 'Read handle starts out fine'; + is $read->error, '', 'Read handle starts out fine'; my $data = do { local $/; <$read> }; - is $read->error, 1, 'Read handle can enter and error state'; + is $read->error, 1, 'Read handle can enter an error state'; - like $PerlIO::via::File::KDBX::HmacBlock::ERROR, qr/failed to read HMAC/i, - 'Error object is available'; + like $File::KDBX::IO::HmacBlock::ERROR, qr/failed to read HMAC/i, 'Error object is available'; }; done_testing;