1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
use Test::More;
use Test::Deep;
use File::Temp qw[tempdir];
use Cwd qw[getcwd];
plan skip_all => "Optional module (DB_File) not installed"
unless eval {
require DB_File;
};
my $package = 'Apache::Session::DB_File';
plan tests => 8;
diag "DB_File version ".DB_File->VERSION();
use_ok $package;
my $origdir = getcwd;
my $tempdir = tempdir( DIR => '.', CLEANUP => 1 );
chdir( $tempdir );
my %session;
my %tie_params = (
FileName => './text.db',
LockDirectory => '.',
);
tie %session, $package, undef, { %tie_params };
ok( tied(%session), "The session is tied" );
ok( exists($session{_session_id}), "Session id exists" );
ok( defined($session{_session_id}), "Session id is defined" );
my $id = $session{_session_id};
my $foo = 'bar';
my $baz = [ qw[tom dick harry] ];
$session{foo} = $foo;
$session{baz} = $baz;
untie %session;
undef %session;
tie %session, $package, $id, { %tie_params };
ok( tied(%session), "The session is tied again" );
is( $session{_session_id}, $id, "Session IDs match" );
cmp_deeply $session{foo}, $foo, "Foo matches";
cmp_deeply $session{baz}, $baz, "Baz matches";
tied(%session)->delete;
untie %session;
undef %session;
chdir( $origdir );
|