X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F21_tie_access.t;h=faeaa2f7875cde6258dce55b1d0e495a95196c63;hb=67e9b86f22e8dacf29904f0163be3b23fae91074;hp=64339b08b8c0849780374f97e2e27588b15bff79;hpb=075910edd08e4ee071dcf8b0abbde2ac00cc0daa;p=dbsrgits%2FDBM-Deep.git diff --git a/t/21_tie_access.t b/t/21_tie_access.t index 64339b0..faeaa2f 100644 --- a/t/21_tie_access.t +++ b/t/21_tie_access.t @@ -1,54 +1,55 @@ -## -# DBM::Deep Test -## use strict; +use warnings FATAL => 'all'; + use Test::More; use Test::Exception; - -plan tests => 7; +use t::common qw( new_fh ); use_ok( 'DBM::Deep' ); -# How should one test for creation failure with the tie mechanism? - -unlink "t/test.db"; +my ($fh, $filename) = new_fh(); { my %hash; - tie %hash, 'DBM::Deep', "t/test.db"; + tie %hash, 'DBM::Deep', $filename; $hash{key1} = 'value'; is( $hash{key1}, 'value', 'Set and retrieved key1' ); + tied( %hash )->_get_self->_engine->storage->close( tied( %hash )->_get_self ); } { my %hash; - tie %hash, 'DBM::Deep', "t/test.db"; + tie %hash, 'DBM::Deep', $filename; is( $hash{key1}, 'value', 'Set and retrieved key1' ); is( keys %hash, 1, "There's one key so far" ); ok( exists $hash{key1}, "... and it's key1" ); + tied( %hash )->_get_self->_engine->storage->close( tied( %hash )->_get_self ); } -TODO: { - local $TODO = "Sig doesn't match, but it's legal??"; - my @array; +{ throws_ok { - tie @array, 'DBM::Deep', { - file => 't/test.db', + tie my @array, 'DBM::Deep', { + file => $filename, type => DBM::Deep->TYPE_ARRAY, }; - } qr/DBM::Deep: Cannot open a hash-based file with an array/, "\$SIG_TYPE doesn't match file's type"; + tied( @array )->_get_self->_engine->storage->close( tied( @array )->_get_self ); + } qr/DBM::Deep: File type mismatch/, "\$SIG_TYPE doesn't match file's type"; +} - unlink "t/test.db"; - DBM::Deep->new( file => 't/test.db', type => DBM::Deep->TYPE_ARRAY ); +{ + my ($fh, $filename) = new_fh(); + my $db = DBM::Deep->new( file => $filename, type => DBM::Deep->TYPE_ARRAY ); - my %hash; throws_ok { - tie %hash, 'DBM::Deep', { - file => 't/test.db', + tie my %hash, 'DBM::Deep', { + file => $filename, type => DBM::Deep->TYPE_HASH, }; - } qr/DBM::Deep: Cannot open a array-based file with a hash/, "\$SIG_TYPE doesn't match file's type"; + } qr/DBM::Deep: File type mismatch/, "\$SIG_TYPE doesn't match file's type"; + $db->_get_self->_engine->storage->close( $db->_get_self ); } + +done_testing;