r11685@rob-kinyons-powerbook58: rob | 2006-04-29 10:50:27 -0400
[dbsrgits/DBM-Deep.git] / t / 27_filehandle.t
1 ##
2 # DBM::Deep Test
3 ##
4 use strict;
5 use Test::More tests => 14;
6 use Test::Exception;
7 use t::common qw( new_fh );
8
9 use_ok( 'DBM::Deep' );
10
11 {
12     my ($fh, $filename) = new_fh();
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(my $fh, '<', $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 => $fh)), "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->_fileobj->{inode}, "The inode has been set" );
37
38         close($fh);
39     }
40 }
41
42 # now the same, but with an offset into the file.  Use the database that's
43 # embedded in the test for the DATA filehandle.  First, find the database ...
44 {
45     my ($fh,$filename) = new_fh();
46
47     print $fh "#!$^X\n";
48     print $fh <<'__END_FH__';
49 use strict;
50 use Test::More no_plan => 1;
51 Test::More->builder->no_ending(1);
52 Test::More->builder->{Curr_Test} = 12;
53
54 use_ok( 'DBM::Deep' );
55
56 my $db = DBM::Deep->new({
57     fh => *DATA,
58 });
59 is($db->{x}, 'b', "and get at stuff in the database");
60 __END_FH__
61     print $fh "__DATA__\n";
62     close $fh;
63
64     my $offset = do {
65         open my $fh, '<', $filename;
66         while(my $line = <$fh>) {
67             last if($line =~ /^__DATA__/);
68         }
69         tell($fh);
70     };
71
72     {
73         my $db = DBM::Deep->new({
74             file        => $filename,
75             file_offset => $offset,
76         });
77
78         $db->{x} = 'b';
79         is( $db->{x}, 'b', 'and it was stored' );
80     }
81
82
83     {
84         open my $fh, '<', $filename;
85         my $db = DBM::Deep->new({
86             fh          => $fh,
87             file_offset => $offset,
88         });
89
90         is($db->{x}, 'b', "and get at stuff in the database");
91
92         ok( !$db->exists( 'foo' ), "foo doesn't exist yet" );
93         throws_ok {
94             $db->{foo} = 1;
95         } qr/Cannot write to a readonly filehandle/, "Can't write to a read-only filehandle";
96         ok( !$db->exists( 'foo' ), "foo still doesn't exist" );
97
98         is( $db->{x}, 'b' );
99     }
100
101     exec( "$^X -Iblib/lib $filename" );
102 }