db-recno.t
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:20k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!./perl -w
  2. use warnings;
  3. use strict ;
  4. BEGIN {
  5.     unless(grep /blib/, @INC) {
  6.         chdir 't' if -d 't';
  7.         @INC = '../lib' if -d '../lib';
  8.     }
  9. }
  10.  
  11. use Config;
  12.  
  13. BEGIN {
  14.     if(-d "lib" && -f "TEST") {
  15.         if ($Config{'extensions'} !~ /bDB_Fileb/ ) {
  16.             print "1..128n";
  17.             exit 0;
  18.         }
  19.     }
  20. }
  21. use DB_File; 
  22. use Fcntl;
  23. use vars qw($dbh $Dfile $bad_ones $FA) ;
  24. # full tied array support started in Perl 5.004_57
  25. # Double check to see if it is available.
  26. {
  27.     sub try::TIEARRAY { bless [], "try" }
  28.     sub try::FETCHSIZE { $FA = 1 }
  29.     $FA = 0 ;
  30.     my @a ; 
  31.     tie @a, 'try' ;
  32.     my $a = @a ;
  33. }
  34. sub ok
  35. {
  36.     my $no = shift ;
  37.     my $result = shift ;
  38.     print "not " unless $result ;
  39.     print "ok $non" ;
  40.     return $result ;
  41. }
  42. {
  43.     package Redirect ;
  44.     use Symbol ;
  45.     sub new
  46.     {
  47.         my $class = shift ;
  48.         my $filename = shift ;
  49. my $fh = gensym ;
  50. open ($fh, ">$filename") || die "Cannot open $filename: $!" ;
  51. my $real_stdout = select($fh) ;
  52. return bless [$fh, $real_stdout ] ;
  53.     }
  54.     sub DESTROY
  55.     {
  56.         my $self = shift ;
  57. close $self->[0] ;
  58. select($self->[1]) ;
  59.     }
  60. }
  61. sub docat
  62. {
  63.     my $file = shift;
  64.     local $/ = undef;
  65.     open(CAT,$file) || die "Cannot open $file:$!";
  66.     my $result = <CAT>;
  67.     close(CAT);
  68.     return $result;
  69. }
  70. sub docat_del
  71.     my $file = shift;
  72.     local $/ = undef;
  73.     open(CAT,$file) || die "Cannot open $file: $!";
  74.     my $result = <CAT>;
  75.     close(CAT);
  76.     unlink $file ;
  77.     return $result;
  78. }   
  79. sub bad_one
  80. {
  81.     print STDERR <<EOM unless $bad_ones++ ;
  82. #
  83. # Some older versions of Berkeley DB version 1 will fail tests 51,
  84. # 53 and 55.
  85. #
  86. # You can safely ignore the errors if you're never going to use the
  87. # broken functionality (recno databases with a modified bval). 
  88. # Otherwise you'll have to upgrade your DB library.
  89. #
  90. # If you want to use Berkeley DB version 1, then 1.85 and 1.86 are the
  91. # last versions that were released. Berkeley DB version 2 is continually
  92. # being updated -- Check out http://www.sleepycat.com/ for more details.
  93. #
  94. EOM
  95. }
  96. print "1..128n";
  97. my $Dfile = "recno.tmp";
  98. unlink $Dfile ;
  99. umask(0);
  100. # Check the interface to RECNOINFO
  101. my $dbh = new DB_File::RECNOINFO ;
  102. ok(1, ! defined $dbh->{bval}) ;
  103. ok(2, ! defined $dbh->{cachesize}) ;
  104. ok(3, ! defined $dbh->{psize}) ;
  105. ok(4, ! defined $dbh->{flags}) ;
  106. ok(5, ! defined $dbh->{lorder}) ;
  107. ok(6, ! defined $dbh->{reclen}) ;
  108. ok(7, ! defined $dbh->{bfname}) ;
  109. $dbh->{bval} = 3000 ;
  110. ok(8, $dbh->{bval} == 3000 );
  111. $dbh->{cachesize} = 9000 ;
  112. ok(9, $dbh->{cachesize} == 9000 );
  113. $dbh->{psize} = 400 ;
  114. ok(10, $dbh->{psize} == 400 );
  115. $dbh->{flags} = 65 ;
  116. ok(11, $dbh->{flags} == 65 );
  117. $dbh->{lorder} = 123 ;
  118. ok(12, $dbh->{lorder} == 123 );
  119. $dbh->{reclen} = 1234 ;
  120. ok(13, $dbh->{reclen} == 1234 );
  121. $dbh->{bfname} = 1234 ;
  122. ok(14, $dbh->{bfname} == 1234 );
  123. # Check that an invalid entry is caught both for store & fetch
  124. eval '$dbh->{fred} = 1234' ;
  125. ok(15, $@ =~ /^DB_File::RECNOINFO::STORE - Unknown element 'fred' at/ );
  126. eval 'my $q = $dbh->{fred}' ;
  127. ok(16, $@ =~ /^DB_File::RECNOINFO::FETCH - Unknown element 'fred' at/ );
  128. # Now check the interface to RECNOINFO
  129. my $X  ;
  130. my @h ;
  131. ok(17, $X = tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) ;
  132. ok(18, ((stat($Dfile))[2] & 0777) == ($^O eq 'os2' ? 0666 : 0640)
  133. ||  $^O eq 'MSWin32' || $^O eq 'amigaos') ;
  134. #my $l = @h ;
  135. my $l = $X->length ;
  136. ok(19, ($FA ? @h == 0 : !$l) );
  137. my @data = qw( a b c d ever f g h  i j k longername m n o p) ;
  138. $h[0] = shift @data ;
  139. ok(20, $h[0] eq 'a' );
  140. my $ i;
  141. foreach (@data)
  142.   { $h[++$i] = $_ }
  143. unshift (@data, 'a') ;
  144. ok(21, defined $h[1] );
  145. ok(22, ! defined $h[16] );
  146. ok(23, $FA ? @h == @data : $X->length == @data );
  147. # Overwrite an entry & check fetch it
  148. $h[3] = 'replaced' ;
  149. $data[3] = 'replaced' ;
  150. ok(24, $h[3] eq 'replaced' );
  151. #PUSH
  152. my @push_data = qw(added to the end) ;
  153. ($FA ? push(@h, @push_data) : $X->push(@push_data)) ;
  154. push (@data, @push_data) ;
  155. ok(25, $h[++$i] eq 'added' );
  156. ok(26, $h[++$i] eq 'to' );
  157. ok(27, $h[++$i] eq 'the' );
  158. ok(28, $h[++$i] eq 'end' );
  159. # POP
  160. my $popped = pop (@data) ;
  161. my $value = ($FA ? pop @h : $X->pop) ;
  162. ok(29, $value eq $popped) ;
  163. # SHIFT
  164. $value = ($FA ? shift @h : $X->shift) ;
  165. my $shifted = shift @data ;
  166. ok(30, $value eq $shifted );
  167. # UNSHIFT
  168. # empty list
  169. ($FA ? unshift @h : $X->unshift) ;
  170. ok(31, ($FA ? @h == @data : $X->length == @data ));
  171. my @new_data = qw(add this to the start of the array) ;
  172. $FA ? unshift (@h, @new_data) : $X->unshift (@new_data) ;
  173. unshift (@data, @new_data) ;
  174. ok(32, $FA ? @h == @data : $X->length == @data );
  175. ok(33, $h[0] eq "add") ;
  176. ok(34, $h[1] eq "this") ;
  177. ok(35, $h[2] eq "to") ;
  178. ok(36, $h[3] eq "the") ;
  179. ok(37, $h[4] eq "start") ;
  180. ok(38, $h[5] eq "of") ;
  181. ok(39, $h[6] eq "the") ;
  182. ok(40, $h[7] eq "array") ;
  183. ok(41, $h[8] eq $data[8]) ;
  184. # SPLICE
  185. # Now both arrays should be identical
  186. my $ok = 1 ;
  187. my $j = 0 ;
  188. foreach (@data)
  189. {
  190.    $ok = 0, last if $_ ne $h[$j ++] ; 
  191. }
  192. ok(42, $ok );
  193. # Neagtive subscripts
  194. # get the last element of the array
  195. ok(43, $h[-1] eq $data[-1] );
  196. ok(44, $h[-1] eq $h[ ($FA ? @h : $X->length) -1] );
  197. # get the first element using a negative subscript
  198. eval '$h[ - ( $FA ? @h : $X->length)] = "abcd"' ;
  199. ok(45, $@ eq "" );
  200. ok(46, $h[0] eq "abcd" );
  201. # now try to read before the start of the array
  202. eval '$h[ - (1 + ($FA ? @h : $X->length))] = 1234' ;
  203. ok(47, $@ =~ '^Modification of non-creatable array value attempted' );
  204. # IMPORTANT - $X must be undefined before the untie otherwise the
  205. #             underlying DB close routine will not get called.
  206. undef $X ;
  207. untie(@h);
  208. unlink $Dfile;
  209. {
  210.     # Check bval defaults to n
  211.     my @h = () ;
  212.     my $dbh = new DB_File::RECNOINFO ;
  213.     ok(48, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
  214.     $h[0] = "abc" ;
  215.     $h[1] = "def" ;
  216.     $h[3] = "ghi" ;
  217.     untie @h ;
  218.     my $x = docat($Dfile) ;
  219.     unlink $Dfile;
  220.     ok(49, $x eq "abcndefnnghin") ;
  221. }
  222. {
  223.     # Change bval
  224.     my @h = () ;
  225.     my $dbh = new DB_File::RECNOINFO ;
  226.     $dbh->{bval} = "-" ;
  227.     ok(50, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
  228.     $h[0] = "abc" ;
  229.     $h[1] = "def" ;
  230.     $h[3] = "ghi" ;
  231.     untie @h ;
  232.     my $x = docat($Dfile) ;
  233.     unlink $Dfile;
  234.     my $ok = ($x eq "abc-def--ghi-") ;
  235.     bad_one() unless $ok ;
  236.     ok(51, $ok) ;
  237. }
  238. {
  239.     # Check R_FIXEDLEN with default bval (space)
  240.     my @h = () ;
  241.     my $dbh = new DB_File::RECNOINFO ;
  242.     $dbh->{flags} = R_FIXEDLEN ;
  243.     $dbh->{reclen} = 5 ;
  244.     ok(52, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
  245.     $h[0] = "abc" ;
  246.     $h[1] = "def" ;
  247.     $h[3] = "ghi" ;
  248.     untie @h ;
  249.     my $x = docat($Dfile) ;
  250.     unlink $Dfile;
  251.     my $ok = ($x eq "abc  def       ghi  ") ;
  252.     bad_one() unless $ok ;
  253.     ok(53, $ok) ;
  254. }
  255. {
  256.     # Check R_FIXEDLEN with user-defined bval
  257.     my @h = () ;
  258.     my $dbh = new DB_File::RECNOINFO ;
  259.     $dbh->{flags} = R_FIXEDLEN ;
  260.     $dbh->{bval} = "-" ;
  261.     $dbh->{reclen} = 5 ;
  262.     ok(54, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
  263.     $h[0] = "abc" ;
  264.     $h[1] = "def" ;
  265.     $h[3] = "ghi" ;
  266.     untie @h ;
  267.     my $x = docat($Dfile) ;
  268.     unlink $Dfile;
  269.     my $ok = ($x eq "abc--def-------ghi--") ;
  270.     bad_one() unless $ok ;
  271.     ok(55, $ok) ;
  272. }
  273. {
  274.     # check that attempting to tie an associative array to a DB_RECNO will fail
  275.     my $filename = "xyz" ;
  276.     my %x ;
  277.     eval { tie %x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $DB_RECNO ; } ;
  278.     ok(56, $@ =~ /^DB_File can only tie an array to a DB_RECNO database/) ;
  279.     unlink $filename ;
  280. }
  281. {
  282.    # sub-class test
  283.    package Another ;
  284.    use warnings ;
  285.    use strict ;
  286.    open(FILE, ">SubDB.pm") or die "Cannot open SubDB.pm: $!n" ;
  287.    print FILE <<'EOM' ;
  288.    package SubDB ;
  289.    use warnings ;
  290.    use strict ;
  291.    use vars qw( @ISA @EXPORT) ;
  292.    require Exporter ;
  293.    use DB_File;
  294.    @ISA=qw(DB_File);
  295.    @EXPORT = @DB_File::EXPORT ;
  296.    sub STORE { 
  297. my $self = shift ;
  298.         my $key = shift ;
  299.         my $value = shift ;
  300.         $self->SUPER::STORE($key, $value * 2) ;
  301.    }
  302.    sub FETCH { 
  303. my $self = shift ;
  304.         my $key = shift ;
  305.         $self->SUPER::FETCH($key) - 1 ;
  306.    }
  307.    sub put { 
  308. my $self = shift ;
  309.         my $key = shift ;
  310.         my $value = shift ;
  311.         $self->SUPER::put($key, $value * 3) ;
  312.    }
  313.    sub get { 
  314. my $self = shift ;
  315.         $self->SUPER::get($_[0], $_[1]) ;
  316. $_[1] -= 2 ;
  317.    }
  318.    sub A_new_method
  319.    {
  320. my $self = shift ;
  321.         my $key = shift ;
  322.         my $value = $self->FETCH($key) ;
  323. return "[[$value]]" ;
  324.    }
  325.    1 ;
  326. EOM
  327.     close FILE ;
  328.     BEGIN { push @INC, '.'; } 
  329.     eval 'use SubDB ; ';
  330.     main::ok(57, $@ eq "") ;
  331.     my @h ;
  332.     my $X ;
  333.     eval '
  334. $X = tie(@h, "SubDB","recno.tmp", O_RDWR|O_CREAT, 0640, $DB_RECNO );
  335. ' ;
  336.     main::ok(58, $@ eq "") ;
  337.     my $ret = eval '$h[3] = 3 ; return $h[3] ' ;
  338.     main::ok(59, $@ eq "") ;
  339.     main::ok(60, $ret == 5) ;
  340.     my $value = 0;
  341.     $ret = eval '$X->put(1, 4) ; $X->get(1, $value) ; return $value' ;
  342.     main::ok(61, $@ eq "") ;
  343.     main::ok(62, $ret == 10) ;
  344.     $ret = eval ' R_NEXT eq main::R_NEXT ' ;
  345.     main::ok(63, $@ eq "" ) ;
  346.     main::ok(64, $ret == 1) ;
  347.     $ret = eval '$X->A_new_method(1) ' ;
  348.     main::ok(65, $@ eq "") ;
  349.     main::ok(66, $ret eq "[[11]]") ;
  350.     undef $X;
  351.     untie(@h);
  352.     unlink "SubDB.pm", "recno.tmp" ;
  353. }
  354. {
  355.     # test $#
  356.     my $self ;
  357.     unlink $Dfile;
  358.     ok(67, $self = tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) ;
  359.     $h[0] = "abc" ;
  360.     $h[1] = "def" ;
  361.     $h[2] = "ghi" ;
  362.     $h[3] = "jkl" ;
  363.     ok(68, $FA ? $#h == 3 : $self->length() == 4) ;
  364.     undef $self ;
  365.     untie @h ;
  366.     my $x = docat($Dfile) ;
  367.     ok(69, $x eq "abcndefnghinjkln") ;
  368.     # $# sets array to same length
  369.     ok(70, $self = tie @h, 'DB_File', $Dfile, O_RDWR, 0640, $DB_RECNO ) ;
  370.     if ($FA)
  371.       { $#h = 3 }
  372.     else 
  373.       { $self->STORESIZE(4) }
  374.     ok(71, $FA ? $#h == 3 : $self->length() == 4) ;
  375.     undef $self ;
  376.     untie @h ;
  377.     $x = docat($Dfile) ;
  378.     ok(72, $x eq "abcndefnghinjkln") ;
  379.     # $# sets array to bigger
  380.     ok(73, $self = tie @h, 'DB_File', $Dfile, O_RDWR, 0640, $DB_RECNO ) ;
  381.     if ($FA)
  382.       { $#h = 6 }
  383.     else 
  384.       { $self->STORESIZE(7) }
  385.     ok(74, $FA ? $#h == 6 : $self->length() == 7) ;
  386.     undef $self ;
  387.     untie @h ;
  388.     $x = docat($Dfile) ;
  389.     ok(75, $x eq "abcndefnghinjklnnnn") ;
  390.     # $# sets array smaller
  391.     ok(76, $self = tie @h, 'DB_File', $Dfile, O_RDWR, 0640, $DB_RECNO ) ;
  392.     if ($FA)
  393.       { $#h = 2 }
  394.     else 
  395.       { $self->STORESIZE(3) }
  396.     ok(77, $FA ? $#h == 2 : $self->length() == 3) ;
  397.     undef $self ;
  398.     untie @h ;
  399.     $x = docat($Dfile) ;
  400.     ok(78, $x eq "abcndefnghin") ;
  401.     unlink $Dfile;
  402. }
  403. {
  404.    # DBM Filter tests
  405.    use warnings ;
  406.    use strict ;
  407.    my (@h, $db) ;
  408.    my ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  409.    unlink $Dfile;
  410.    sub checkOutput
  411.    {
  412.        my($fk, $sk, $fv, $sv) = @_ ;
  413.        return
  414.            $fetch_key eq $fk && $store_key eq $sk && 
  415.    $fetch_value eq $fv && $store_value eq $sv &&
  416.    $_ eq 'original' ;
  417.    }
  418.    
  419.    ok(79, $db = tie(@h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) );
  420.    $db->filter_fetch_key   (sub { $fetch_key = $_ }) ;
  421.    $db->filter_store_key   (sub { $store_key = $_ }) ;
  422.    $db->filter_fetch_value (sub { $fetch_value = $_}) ;
  423.    $db->filter_store_value (sub { $store_value = $_ }) ;
  424.    $_ = "original" ;
  425.    $h[0] = "joe" ;
  426.    #                   fk   sk     fv   sv
  427.    ok(80, checkOutput( "", 0, "", "joe")) ;
  428.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  429.    ok(81, $h[0] eq "joe");
  430.    #                   fk  sk  fv    sv
  431.    ok(82, checkOutput( "", 0, "joe", "")) ;
  432.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  433.    ok(83, $db->FIRSTKEY() == 0) ;
  434.    #                    fk     sk  fv  sv
  435.    ok(84, checkOutput( 0, "", "", "")) ;
  436.    # replace the filters, but remember the previous set
  437.    my ($old_fk) = $db->filter_fetch_key   
  438.     (sub { ++ $_ ; $fetch_key = $_ }) ;
  439.    my ($old_sk) = $db->filter_store_key   
  440.     (sub { $_ *= 2 ; $store_key = $_ }) ;
  441.    my ($old_fv) = $db->filter_fetch_value 
  442.     (sub { $_ = "[$_]"; $fetch_value = $_ }) ;
  443.    my ($old_sv) = $db->filter_store_value 
  444.     (sub { s/o/x/g; $store_value = $_ }) ;
  445.    
  446.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  447.    $h[1] = "Joe" ;
  448.    #                   fk   sk     fv    sv
  449.    ok(85, checkOutput( "", 2, "", "Jxe")) ;
  450.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  451.    ok(86, $h[1] eq "[Jxe]");
  452.    #                   fk   sk     fv    sv
  453.    ok(87, checkOutput( "", 2, "[Jxe]", "")) ;
  454.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  455.    ok(88, $db->FIRSTKEY() == 1) ;
  456.    #                   fk   sk     fv    sv
  457.    ok(89, checkOutput( 1, "", "", "")) ;
  458.    
  459.    # put the original filters back
  460.    $db->filter_fetch_key   ($old_fk);
  461.    $db->filter_store_key   ($old_sk);
  462.    $db->filter_fetch_value ($old_fv);
  463.    $db->filter_store_value ($old_sv);
  464.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  465.    $h[0] = "joe" ;
  466.    ok(90, checkOutput( "", 0, "", "joe")) ;
  467.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  468.    ok(91, $h[0] eq "joe");
  469.    ok(92, checkOutput( "", 0, "joe", "")) ;
  470.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  471.    ok(93, $db->FIRSTKEY() == 0) ;
  472.    ok(94, checkOutput( 0, "", "", "")) ;
  473.    # delete the filters
  474.    $db->filter_fetch_key   (undef);
  475.    $db->filter_store_key   (undef);
  476.    $db->filter_fetch_value (undef);
  477.    $db->filter_store_value (undef);
  478.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  479.    $h[0] = "joe" ;
  480.    ok(95, checkOutput( "", "", "", "")) ;
  481.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  482.    ok(96, $h[0] eq "joe");
  483.    ok(97, checkOutput( "", "", "", "")) ;
  484.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  485.    ok(98, $db->FIRSTKEY() == 0) ;
  486.    ok(99, checkOutput( "", "", "", "")) ;
  487.    undef $db ;
  488.    untie @h;
  489.    unlink $Dfile;
  490. }
  491. {    
  492.     # DBM Filter with a closure
  493.     use warnings ;
  494.     use strict ;
  495.     my (@h, $db) ;
  496.     unlink $Dfile;
  497.     ok(100, $db = tie(@h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) );
  498.     my %result = () ;
  499.     sub Closure
  500.     {
  501.         my ($name) = @_ ;
  502. my $count = 0 ;
  503. my @kept = () ;
  504. return sub { ++$count ; 
  505.      push @kept, $_ ; 
  506.      $result{$name} = "$name - $count: [@kept]" ;
  507.    }
  508.     }
  509.     $db->filter_store_key(Closure("store key")) ;
  510.     $db->filter_store_value(Closure("store value")) ;
  511.     $db->filter_fetch_key(Closure("fetch key")) ;
  512.     $db->filter_fetch_value(Closure("fetch value")) ;
  513.     $_ = "original" ;
  514.     $h[0] = "joe" ;
  515.     ok(101, $result{"store key"} eq "store key - 1: [0]");
  516.     ok(102, $result{"store value"} eq "store value - 1: [joe]");
  517.     ok(103, ! defined $result{"fetch key"} );
  518.     ok(104, ! defined $result{"fetch value"} );
  519.     ok(105, $_ eq "original") ;
  520.     ok(106, $db->FIRSTKEY() == 0 ) ;
  521.     ok(107, $result{"store key"} eq "store key - 1: [0]");
  522.     ok(108, $result{"store value"} eq "store value - 1: [joe]");
  523.     ok(109, $result{"fetch key"} eq "fetch key - 1: [0]");
  524.     ok(110, ! defined $result{"fetch value"} );
  525.     ok(111, $_ eq "original") ;
  526.     $h[7]  = "john" ;
  527.     ok(112, $result{"store key"} eq "store key - 2: [0 7]");
  528.     ok(113, $result{"store value"} eq "store value - 2: [joe john]");
  529.     ok(114, $result{"fetch key"} eq "fetch key - 1: [0]");
  530.     ok(115, ! defined $result{"fetch value"} );
  531.     ok(116, $_ eq "original") ;
  532.     ok(117, $h[0] eq "joe");
  533.     ok(118, $result{"store key"} eq "store key - 3: [0 7 0]");
  534.     ok(119, $result{"store value"} eq "store value - 2: [joe john]");
  535.     ok(120, $result{"fetch key"} eq "fetch key - 1: [0]");
  536.     ok(121, $result{"fetch value"} eq "fetch value - 1: [joe]");
  537.     ok(122, $_ eq "original") ;
  538.     undef $db ;
  539.     untie @h;
  540.     unlink $Dfile;
  541. }
  542. {
  543.    # DBM Filter recursion detection
  544.    use warnings ;
  545.    use strict ;
  546.    my (@h, $db) ;
  547.    unlink $Dfile;
  548.    ok(123, $db = tie(@h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) );
  549.    $db->filter_store_key (sub { $_ = $h[0] }) ;
  550.    eval '$h[1] = 1234' ;
  551.    ok(124, $@ =~ /^recursion detected in filter_store_key at/ );
  552.    
  553.    undef $db ;
  554.    untie @h;
  555.    unlink $Dfile;
  556. }
  557. {
  558.    # Examples from the POD
  559.   my $file = "xyzt" ;
  560.   {
  561.     my $redirect = new Redirect $file ;
  562.     use warnings FATAL => qw(all);
  563.     use strict ;
  564.     use DB_File ;
  565.     my $filename = "text" ;
  566.     unlink $filename ;
  567.     my @h ;
  568.     my $x = tie @h, "DB_File", $filename, O_RDWR|O_CREAT, 0640, $DB_RECNO 
  569.         or die "Cannot open file 'text': $!n" ;
  570.     # Add a few key/value pairs to the file
  571.     $h[0] = "orange" ;
  572.     $h[1] = "blue" ;
  573.     $h[2] = "yellow" ;
  574.     $FA ? push @h, "green", "black" 
  575.         : $x->push("green", "black") ;
  576.     my $elements = $FA ? scalar @h : $x->length ;
  577.     print "The array contains $elements entriesn" ;
  578.     my $last = $FA ? pop @h : $x->pop ;
  579.     print "popped $lastn" ;
  580.     $FA ? unshift @h, "white" 
  581.         : $x->unshift("white") ;
  582.     my $first = $FA ? shift @h : $x->shift ;
  583.     print "shifted $firstn" ;
  584.     # Check for existence of a key
  585.     print "Element 1 Exists with value $h[1]n" if $h[1] ;
  586.     # use a negative index
  587.     print "The last element is $h[-1]n" ;
  588.     print "The 2nd last element is $h[-2]n" ;
  589.     undef $x ;
  590.     untie @h ;
  591.     unlink $filename ;
  592.   }  
  593.   ok(125, docat_del($file) eq <<'EOM') ;
  594. The array contains 5 entries
  595. popped black
  596. shifted white
  597. Element 1 Exists with value blue
  598. The last element is green
  599. The 2nd last element is yellow
  600. EOM
  601.   my $save_output = "xyzt" ;
  602.   {
  603.     my $redirect = new Redirect $save_output ;
  604.     use warnings FATAL => qw(all);
  605.     use strict ;
  606.     use vars qw(@h $H $file $i) ;
  607.     use DB_File ;
  608.     use Fcntl ;
  609.     
  610.     $file = "text" ;
  611.     unlink $file ;
  612.     $H = tie @h, "DB_File", $file, O_RDWR|O_CREAT, 0640, $DB_RECNO 
  613.         or die "Cannot open file $file: $!n" ;
  614.     
  615.     # first create a text file to play with
  616.     $h[0] = "zero" ;
  617.     $h[1] = "one" ;
  618.     $h[2] = "two" ;
  619.     $h[3] = "three" ;
  620.     $h[4] = "four" ;
  621.     
  622.     # Print the records in order.
  623.     #
  624.     # The length method is needed here because evaluating a tied
  625.     # array in a scalar context does not return the number of
  626.     # elements in the array.  
  627.     print "nORIGINALn" ;
  628.     foreach $i (0 .. $H->length - 1) {
  629.         print "$i: $h[$i]n" ;
  630.     }
  631.     # use the push & pop methods
  632.     $a = $H->pop ;
  633.     $H->push("last") ;
  634.     print "nThe last record was [$a]n" ;
  635.     # and the shift & unshift methods
  636.     $a = $H->shift ;
  637.     $H->unshift("first") ;
  638.     print "The first record was [$a]n" ;
  639.     # Use the API to add a new record after record 2.
  640.     $i = 2 ;
  641.     $H->put($i, "Newbie", R_IAFTER) ;
  642.     # and a new record before record 1.
  643.     $i = 1 ;
  644.     $H->put($i, "New One", R_IBEFORE) ;
  645.     # delete record 3
  646.     $H->del(3) ;
  647.     # now print the records in reverse order
  648.     print "nREVERSEn" ;
  649.     for ($i = $H->length - 1 ; $i >= 0 ; -- $i)
  650.       { print "$i: $h[$i]n" }
  651.     # same again, but use the API functions instead
  652.     print "nREVERSE againn" ;
  653.     my ($s, $k, $v)  = (0, 0, 0) ;
  654.     for ($s = $H->seq($k, $v, R_LAST) ; 
  655.              $s == 0 ; 
  656.              $s = $H->seq($k, $v, R_PREV))
  657.       { print "$k: $vn" }
  658.     undef $H ;
  659.     untie @h ;    
  660.     unlink $file ;
  661.   }  
  662.   ok(126, docat_del($save_output) eq <<'EOM') ;
  663. ORIGINAL
  664. 0: zero
  665. 1: one
  666. 2: two
  667. 3: three
  668. 4: four
  669. The last record was [four]
  670. The first record was [zero]
  671. REVERSE
  672. 5: last
  673. 4: three
  674. 3: Newbie
  675. 2: one
  676. 1: New One
  677. 0: first
  678. REVERSE again
  679. 5: last
  680. 4: three
  681. 3: Newbie
  682. 2: one
  683. 1: New One
  684. 0: first
  685. EOM
  686.    
  687. }
  688. {
  689.     # Bug ID 20001013.009
  690.     #
  691.     # test that $hash{KEY} = undef doesn't produce the warning
  692.     #     Use of uninitialized value in null operation 
  693.     use warnings ;
  694.     use strict ;
  695.     use DB_File ;
  696.     unlink $Dfile;
  697.     my @h ;
  698.     my $a = "";
  699.     local $SIG{__WARN__} = sub {$a = $_[0]} ;
  700.     
  701.     tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0664, $DB_RECNO 
  702. or die "Can't open file: $!n" ;
  703.     $h[0] = undef;
  704.     ok(127, $a eq "") ;
  705.     untie @h ;
  706.     unlink $Dfile;
  707. }
  708. {
  709.     # test that %hash = () doesn't produce the warning
  710.     #     Argument "" isn't numeric in entersub
  711.     use warnings ;
  712.     use strict ;
  713.     use DB_File ;
  714.     my $a = "";
  715.     local $SIG{__WARN__} = sub {$a = $_[0]} ;
  716.     unlink $Dfile;
  717.     my @h ;
  718.     
  719.     tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0664, $DB_RECNO 
  720. or die "Can't open file: $!n" ;
  721.     @h = (); ;
  722.     ok(128, $a eq "") ;
  723.     untie @h ;
  724.     unlink $Dfile;
  725. }
  726. exit ;