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 61 62 63 64
|
# $Id: api3_obj_store_db_file.t,v 1.3.6.1 2003/07/26 13:37:36 sherzodr Exp $
use strict;
use CGI;
use CGI::Session;
eval "require DB_File";
if ( $@ ) {
print "1..0 #Skipped: DB_File is not available\n";
exit(0)
}
my @mods = qw(Storable FreezeThaw);
my $ser = undef;
for ( @mods ) {
eval "require $_";
unless ( $@ ) {
$ser = $_;
next;
}
}
unless ( $ser ) {
print "1..0 #Skipped: Neither Storable nor FreezeThaw avaialble\n";
exit(0);
}
my $args = "driver:DB_File;serializer:$ser";
my $dr_args = {Directory=>'t'};
print "1..8\n";
my $cgi = CGI->new;
my $s = CGI::Session->new($args, undef, $dr_args);
print defined($s) ? "ok\n" : "not ok\n";
print $s->id() ? "ok\n" : "not ok\n";
$cgi->param(name => 'Sherzod');
print $cgi->param('name') ? "ok\n" : "not ok\n";
print $s->param(_CGI => $cgi) ? "ok\n" : "not ok\n";
my $sid = $s->id();
$s->flush();
my $s2 = CGI::Session->new($args, $sid, $dr_args);
print defined($s2) ? "ok\n" : "not ok\n";
print $s2->id eq $sid ? "ok\n" : "not ok\n";
my $old_cgi = $s2->param('_CGI');
print ref($old_cgi) ? "ok\n" : "not ok\n";
print $old_cgi->param('name') eq 'Sherzod' ? "ok\n" : "not ok\n";
$s2->delete();
|