Incompatible file format change
[dbsrgits/DBM-Deep.git] / t / 27_filehandle.t
1 ##
2 # DBM::Deep Test
3 ##
4 use strict;
5 use Test::More tests => 11;
6 use Test::Exception;
7 use File::Temp qw( tempfile tempdir );
8
9 use_ok( 'DBM::Deep' );
10
11 my $dir = tempdir( CLEANUP => 1 );
12 my ($fh, $filename) = tempfile( 'tmpXXXX', UNLINK => 1, DIR => $dir );
13
14 # Create the datafile to be used
15 {
16     my $db = DBM::Deep->new( $filename );
17     $db->{hash} = { foo => [ 'a' .. 'c' ] };
18 }
19
20 {
21     open(FILE, $filename) || die("Can't open '$filename' for reading: $!\n");
22
23     my $db;
24
25     # test if we can open and read a db using its filehandle
26
27     ok(($db = DBM::Deep->new(fh => *FILE)), "open db in filehandle");
28     ok($db->{hash}->{foo}->[1] eq 'b', "and get at stuff in the database");
29     throws_ok {
30         $db->{foo} = 1;
31     } qr/Cannot write to a readonly filehandle/,
32       "Can't write to a read-only filehandle";
33     ok( !$db->exists( 'foo' ), "foo doesn't exist" );
34
35     my $db_obj = $db->_get_self;
36     ok( $db_obj->_root->{inode}, "The inode has been set" );
37
38     close(FILE);
39 }
40
41 # now the same, but with an offset into the file.  Use the database that's
42 # embedded in the test for the DATA filehandle.  First, find the database ...
43 open(FILE, "t/28_DATA.t") || die("Can't open t/28_DATA.t\n");
44 while(my $line = <FILE>) {
45     last if($line =~ /^__DATA__/);
46 }
47 my $offset = tell(FILE);
48 close(FILE);
49
50 SKIP: {
51     skip "File format changed ... gah!", 5;
52     open(FILE, "t/28_DATA.t");
53
54     my $db;
55
56     ok(($db = DBM::Deep->new(fh => *FILE, file_offset => $offset)), "open db in filehandle with offset");
57
58     ok($db->{hash}->{foo}->[1] eq 'b', "and get at stuff in the database");
59
60     ok( !$db->exists( 'foo' ), "foo doesn't exist yet" );
61     throws_ok {
62         $db->{foo} = 1;
63     } qr/Cannot write to a readonly filehandle/, "Can't write to a read-only filehandle";
64     ok( !$db->exists( 'foo' ), "foo doesn't exist" );
65
66     close FILE;
67 }