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

MySQL数据库

开发平台:

Visual C++

  1. #!./perl 
  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..111n";
  17.             exit 0;
  18.         }
  19.     }
  20. }
  21. use DB_File; 
  22. use Fcntl;
  23. print "1..111n";
  24. sub ok
  25. {
  26.     my $no = shift ;
  27.     my $result = shift ;
  28.  
  29.     print "not " unless $result ;
  30.     print "ok $non" ;
  31. }
  32. {
  33.     package Redirect ;
  34.     use Symbol ;
  35.     sub new
  36.     {
  37.         my $class = shift ;
  38.         my $filename = shift ;
  39. my $fh = gensym ;
  40. open ($fh, ">$filename") || die "Cannot open $filename: $!" ;
  41. my $real_stdout = select($fh) ;
  42. return bless [$fh, $real_stdout ] ;
  43.     }
  44.     sub DESTROY
  45.     {
  46.         my $self = shift ;
  47. close $self->[0] ;
  48. select($self->[1]) ;
  49.     }
  50. }
  51. sub docat_del
  52.     my $file = shift;
  53.     local $/ = undef;
  54.     open(CAT,$file) || die "Cannot open $file: $!";
  55.     my $result = <CAT>;
  56.     close(CAT);
  57.     unlink $file ;
  58.     return $result;
  59. }   
  60. my $Dfile = "dbhash.tmp";
  61. my $null_keys_allowed = ($DB_File::db_ver < 2.004010 
  62. || $DB_File::db_ver >= 3.1 );
  63. unlink $Dfile;
  64. umask(0);
  65. # Check the interface to HASHINFO
  66. my $dbh = new DB_File::HASHINFO ;
  67. ok(1, ! defined $dbh->{bsize}) ;
  68. ok(2, ! defined $dbh->{ffactor}) ;
  69. ok(3, ! defined $dbh->{nelem}) ;
  70. ok(4, ! defined $dbh->{cachesize}) ;
  71. ok(5, ! defined $dbh->{hash}) ;
  72. ok(6, ! defined $dbh->{lorder}) ;
  73. $dbh->{bsize} = 3000 ;
  74. ok(7, $dbh->{bsize} == 3000 );
  75. $dbh->{ffactor} = 9000 ;
  76. ok(8, $dbh->{ffactor} == 9000 );
  77. $dbh->{nelem} = 400 ;
  78. ok(9, $dbh->{nelem} == 400 );
  79. $dbh->{cachesize} = 65 ;
  80. ok(10, $dbh->{cachesize} == 65 );
  81. $dbh->{hash} = "abc" ;
  82. ok(11, $dbh->{hash} eq "abc" );
  83. $dbh->{lorder} = 1234 ;
  84. ok(12, $dbh->{lorder} == 1234 );
  85. # Check that an invalid entry is caught both for store & fetch
  86. eval '$dbh->{fred} = 1234' ;
  87. ok(13, $@ =~ /^DB_File::HASHINFO::STORE - Unknown element 'fred' at/ );
  88. eval 'my $q = $dbh->{fred}' ;
  89. ok(14, $@ =~ /^DB_File::HASHINFO::FETCH - Unknown element 'fred' at/ );
  90. # Now check the interface to HASH
  91. my ($X, %h);
  92. ok(15, $X = tie(%h, 'DB_File',$Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  93. my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  94.    $blksize,$blocks) = stat($Dfile);
  95. ok(16, ($mode & 0777) == ($^O eq 'os2' ? 0666 : 0640) || $^O eq 'amigaos' || $^O eq 'MSWin32');
  96. my ($key, $value, $i);
  97. while (($key,$value) = each(%h)) {
  98.     $i++;
  99. }
  100. ok(17, !$i );
  101. $h{'goner1'} = 'snork';
  102. $h{'abc'} = 'ABC';
  103. ok(18, $h{'abc'} eq 'ABC' );
  104. ok(19, !defined $h{'jimmy'} );
  105. ok(20, !exists $h{'jimmy'} );
  106. ok(21, exists $h{'abc'} );
  107. $h{'def'} = 'DEF';
  108. $h{'jkl','mno'} = "JKL34MNO";
  109. $h{'a',2,3,4,5} = join("34",'A',2,3,4,5);
  110. $h{'a'} = 'A';
  111. #$h{'b'} = 'B';
  112. $X->STORE('b', 'B') ;
  113. $h{'c'} = 'C';
  114. #$h{'d'} = 'D';
  115. $X->put('d', 'D') ;
  116. $h{'e'} = 'E';
  117. $h{'f'} = 'F';
  118. $h{'g'} = 'X';
  119. $h{'h'} = 'H';
  120. $h{'i'} = 'I';
  121. $h{'goner2'} = 'snork';
  122. delete $h{'goner2'};
  123. # IMPORTANT - $X must be undefined before the untie otherwise the
  124. #             underlying DB close routine will not get called.
  125. undef $X ;
  126. untie(%h);
  127. # tie to the same file again, do not supply a type - should default to HASH
  128. ok(22, $X = tie(%h,'DB_File',$Dfile, O_RDWR, 0640) );
  129. # Modify an entry from the previous tie
  130. $h{'g'} = 'G';
  131. $h{'j'} = 'J';
  132. $h{'k'} = 'K';
  133. $h{'l'} = 'L';
  134. $h{'m'} = 'M';
  135. $h{'n'} = 'N';
  136. $h{'o'} = 'O';
  137. $h{'p'} = 'P';
  138. $h{'q'} = 'Q';
  139. $h{'r'} = 'R';
  140. $h{'s'} = 'S';
  141. $h{'t'} = 'T';
  142. $h{'u'} = 'U';
  143. $h{'v'} = 'V';
  144. $h{'w'} = 'W';
  145. $h{'x'} = 'X';
  146. $h{'y'} = 'Y';
  147. $h{'z'} = 'Z';
  148. $h{'goner3'} = 'snork';
  149. delete $h{'goner1'};
  150. $X->DELETE('goner3');
  151. my @keys = keys(%h);
  152. my @values = values(%h);
  153. ok(23, $#keys == 29 && $#values == 29) ;
  154. $i = 0 ;
  155. while (($key,$value) = each(%h)) {
  156.     if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) {
  157. $key =~ y/a-z/A-Z/;
  158. $i++ if $key eq $value;
  159.     }
  160. }
  161. ok(24, $i == 30) ;
  162. @keys = ('blurfl', keys(%h), 'dyick');
  163. ok(25, $#keys == 31) ;
  164. $h{'foo'} = '';
  165. ok(26, $h{'foo'} eq '' );
  166. # Berkeley DB from version 2.4.10 to 3.0 does not allow null keys.
  167. # This feature was reenabled in version 3.1 of Berkeley DB.
  168. my $result = 0 ;
  169. if ($null_keys_allowed) {
  170.     $h{''} = 'bar';
  171.     $result = ( $h{''} eq 'bar' );
  172. }
  173. else
  174.   { $result = 1 }
  175. ok(27, $result) ;
  176. # check cache overflow and numeric keys and contents
  177. my $ok = 1;
  178. for ($i = 1; $i < 200; $i++) { $h{$i + 0} = $i + 0; }
  179. for ($i = 1; $i < 200; $i++) { $ok = 0 unless $h{$i} == $i; }
  180. ok(28, $ok );
  181. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  182.    $blksize,$blocks) = stat($Dfile);
  183. ok(29, $size > 0 );
  184. @h{0..200} = 200..400;
  185. my @foo = @h{0..200};
  186. ok(30, join(':',200..400) eq join(':',@foo) );
  187. # Now check all the non-tie specific stuff
  188. # Check NOOVERWRITE will make put fail when attempting to overwrite
  189. # an existing record.
  190.  
  191. my $status = $X->put( 'x', 'newvalue', R_NOOVERWRITE) ;
  192. ok(31, $status == 1 );
  193.  
  194. # check that the value of the key 'x' has not been changed by the 
  195. # previous test
  196. ok(32, $h{'x'} eq 'X' );
  197. # standard put
  198. $status = $X->put('key', 'value') ;
  199. ok(33, $status == 0 );
  200. #check that previous put can be retrieved
  201. $value = 0 ;
  202. $status = $X->get('key', $value) ;
  203. ok(34, $status == 0 );
  204. ok(35, $value eq 'value' );
  205. # Attempting to delete an existing key should work
  206. $status = $X->del('q') ;
  207. ok(36, $status == 0 );
  208. # Make sure that the key deleted, cannot be retrieved
  209. {
  210.     no warnings 'uninitialized' ;
  211.     ok(37, $h{'q'} eq undef );
  212. }
  213. # Attempting to delete a non-existant key should fail
  214. $status = $X->del('joe') ;
  215. ok(38, $status == 1 );
  216. # Check the get interface
  217. # First a non-existing key
  218. $status = $X->get('aaaa', $value) ;
  219. ok(39, $status == 1 );
  220. # Next an existing key
  221. $status = $X->get('a', $value) ;
  222. ok(40, $status == 0 );
  223. ok(41, $value eq 'A' );
  224. # seq
  225. # ###
  226. # ditto, but use put to replace the key/value pair.
  227. # use seq to walk backwards through a file - check that this reversed is
  228. # check seq FIRST/LAST
  229. # sync
  230. # ####
  231. $status = $X->sync ;
  232. ok(42, $status == 0 );
  233. # fd
  234. # ##
  235. $status = $X->fd ;
  236. ok(43, $status != 0 );
  237. undef $X ;
  238. untie %h ;
  239. unlink $Dfile;
  240. # clear
  241. # #####
  242. ok(44, tie(%h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  243. foreach (1 .. 10)
  244.   { $h{$_} = $_ * 100 }
  245. # check that there are 10 elements in the hash
  246. $i = 0 ;
  247. while (($key,$value) = each(%h)) {
  248.     $i++;
  249. }
  250. ok(45, $i == 10);
  251. # now clear the hash
  252. %h = () ;
  253. # check it is empty
  254. $i = 0 ;
  255. while (($key,$value) = each(%h)) {
  256.     $i++;
  257. }
  258. ok(46, $i == 0);
  259. untie %h ;
  260. unlink $Dfile ;
  261. # Now try an in memory file
  262. ok(47, $X = tie(%h, 'DB_File',undef, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  263. # fd with an in memory file should return fail
  264. $status = $X->fd ;
  265. ok(48, $status == -1 );
  266. undef $X ;
  267. untie %h ;
  268. {
  269.     # check ability to override the default hashing
  270.     my %x ;
  271.     my $filename = "xyz" ;
  272.     my $hi = new DB_File::HASHINFO ;
  273.     $::count = 0 ;
  274.     $hi->{hash} = sub { ++$::count ; length $_[0] } ;
  275.     ok(49, tie %x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $hi ) ;
  276.     $h{"abc"} = 123 ;
  277.     ok(50, $h{"abc"} == 123) ;
  278.     untie %x ;
  279.     unlink $filename ;
  280.     ok(51, $::count >0) ;
  281. }
  282. {
  283.     # check that attempting to tie an array to a DB_HASH will fail
  284.     my $filename = "xyz" ;
  285.     my @x ;
  286.     eval { tie @x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $DB_HASH ; } ;
  287.     ok(52, $@ =~ /^DB_File can only tie an associative array to a DB_HASH database/) ;
  288.     unlink $filename ;
  289. }
  290. {
  291.    # sub-class test
  292.    package Another ;
  293.    use warnings ;
  294.    use strict ;
  295.    open(FILE, ">SubDB.pm") or die "Cannot open SubDB.pm: $!n" ;
  296.    print FILE <<'EOM' ;
  297.    package SubDB ;
  298.    use warnings ;
  299.    use strict ;
  300.    use vars qw( @ISA @EXPORT) ;
  301.    require Exporter ;
  302.    use DB_File;
  303.    @ISA=qw(DB_File);
  304.    @EXPORT = @DB_File::EXPORT ;
  305.    sub STORE { 
  306. my $self = shift ;
  307.         my $key = shift ;
  308.         my $value = shift ;
  309.         $self->SUPER::STORE($key, $value * 2) ;
  310.    }
  311.    sub FETCH { 
  312. my $self = shift ;
  313.         my $key = shift ;
  314.         $self->SUPER::FETCH($key) - 1 ;
  315.    }
  316.    sub put { 
  317. my $self = shift ;
  318.         my $key = shift ;
  319.         my $value = shift ;
  320.         $self->SUPER::put($key, $value * 3) ;
  321.    }
  322.    sub get { 
  323. my $self = shift ;
  324.         $self->SUPER::get($_[0], $_[1]) ;
  325. $_[1] -= 2 ;
  326.    }
  327.    sub A_new_method
  328.    {
  329. my $self = shift ;
  330.         my $key = shift ;
  331.         my $value = $self->FETCH($key) ;
  332. return "[[$value]]" ;
  333.    }
  334.    1 ;
  335. EOM
  336.     close FILE ;
  337.     BEGIN { push @INC, '.'; }             
  338.     eval 'use SubDB ; ';
  339.     main::ok(53, $@ eq "") ;
  340.     my %h ;
  341.     my $X ;
  342.     eval '
  343. $X = tie(%h, "SubDB","dbhash.tmp", O_RDWR|O_CREAT, 0640, $DB_HASH );
  344. ' ;
  345.     main::ok(54, $@ eq "") ;
  346.     my $ret = eval '$h{"fred"} = 3 ; return $h{"fred"} ' ;
  347.     main::ok(55, $@ eq "") ;
  348.     main::ok(56, $ret == 5) ;
  349.     my $value = 0;
  350.     $ret = eval '$X->put("joe", 4) ; $X->get("joe", $value) ; return $value' ;
  351.     main::ok(57, $@ eq "") ;
  352.     main::ok(58, $ret == 10) ;
  353.     $ret = eval ' R_NEXT eq main::R_NEXT ' ;
  354.     main::ok(59, $@ eq "" ) ;
  355.     main::ok(60, $ret == 1) ;
  356.     $ret = eval '$X->A_new_method("joe") ' ;
  357.     main::ok(61, $@ eq "") ;
  358.     main::ok(62, $ret eq "[[11]]") ;
  359.     undef $X;
  360.     untie(%h);
  361.     unlink "SubDB.pm", "dbhash.tmp" ;
  362. }
  363. {
  364.    # DBM Filter tests
  365.    use warnings ;
  366.    use strict ;
  367.    my (%h, $db) ;
  368.    my ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  369.    unlink $Dfile;
  370.    sub checkOutput
  371.    {
  372.        my($fk, $sk, $fv, $sv) = @_ ;
  373.        return
  374.            $fetch_key eq $fk && $store_key eq $sk && 
  375.    $fetch_value eq $fv && $store_value eq $sv &&
  376.    $_ eq 'original' ;
  377.    }
  378.    
  379.    ok(63, $db = tie(%h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  380.    $db->filter_fetch_key   (sub { $fetch_key = $_ }) ;
  381.    $db->filter_store_key   (sub { $store_key = $_ }) ;
  382.    $db->filter_fetch_value (sub { $fetch_value = $_}) ;
  383.    $db->filter_store_value (sub { $store_value = $_ }) ;
  384.    $_ = "original" ;
  385.    $h{"fred"} = "joe" ;
  386.    #                   fk   sk     fv   sv
  387.    ok(64, checkOutput( "", "fred", "", "joe")) ;
  388.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  389.    ok(65, $h{"fred"} eq "joe");
  390.    #                   fk    sk     fv    sv
  391.    ok(66, checkOutput( "", "fred", "joe", "")) ;
  392.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  393.    ok(67, $db->FIRSTKEY() eq "fred") ;
  394.    #                    fk     sk  fv  sv
  395.    ok(68, checkOutput( "fred", "", "", "")) ;
  396.    # replace the filters, but remember the previous set
  397.    my ($old_fk) = $db->filter_fetch_key   
  398.     (sub { $_ = uc $_ ; $fetch_key = $_ }) ;
  399.    my ($old_sk) = $db->filter_store_key   
  400.     (sub { $_ = lc $_ ; $store_key = $_ }) ;
  401.    my ($old_fv) = $db->filter_fetch_value 
  402.     (sub { $_ = "[$_]"; $fetch_value = $_ }) ;
  403.    my ($old_sv) = $db->filter_store_value 
  404.     (sub { s/o/x/g; $store_value = $_ }) ;
  405.    
  406.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  407.    $h{"Fred"} = "Joe" ;
  408.    #                   fk   sk     fv    sv
  409.    ok(69, checkOutput( "", "fred", "", "Jxe")) ;
  410.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  411.    ok(70, $h{"Fred"} eq "[Jxe]");
  412.    #                   fk   sk     fv    sv
  413.    ok(71, checkOutput( "", "fred", "[Jxe]", "")) ;
  414.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  415.    ok(72, $db->FIRSTKEY() eq "FRED") ;
  416.    #                   fk   sk     fv    sv
  417.    ok(73, checkOutput( "FRED", "", "", "")) ;
  418.    # put the original filters back
  419.    $db->filter_fetch_key   ($old_fk);
  420.    $db->filter_store_key   ($old_sk);
  421.    $db->filter_fetch_value ($old_fv);
  422.    $db->filter_store_value ($old_sv);
  423.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  424.    $h{"fred"} = "joe" ;
  425.    ok(74, checkOutput( "", "fred", "", "joe")) ;
  426.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  427.    ok(75, $h{"fred"} eq "joe");
  428.    ok(76, checkOutput( "", "fred", "joe", "")) ;
  429.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  430.    ok(77, $db->FIRSTKEY() eq "fred") ;
  431.    ok(78, checkOutput( "fred", "", "", "")) ;
  432.    # delete the filters
  433.    $db->filter_fetch_key   (undef);
  434.    $db->filter_store_key   (undef);
  435.    $db->filter_fetch_value (undef);
  436.    $db->filter_store_value (undef);
  437.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  438.    $h{"fred"} = "joe" ;
  439.    ok(79, checkOutput( "", "", "", "")) ;
  440.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  441.    ok(80, $h{"fred"} eq "joe");
  442.    ok(81, checkOutput( "", "", "", "")) ;
  443.    ($fetch_key, $store_key, $fetch_value, $store_value) = ("") x 4 ;
  444.    ok(82, $db->FIRSTKEY() eq "fred") ;
  445.    ok(83, checkOutput( "", "", "", "")) ;
  446.    undef $db ;
  447.    untie %h;
  448.    unlink $Dfile;
  449. }
  450. {    
  451.     # DBM Filter with a closure
  452.     use warnings ;
  453.     use strict ;
  454.     my (%h, $db) ;
  455.     unlink $Dfile;
  456.     ok(84, $db = tie(%h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  457.     my %result = () ;
  458.     sub Closure
  459.     {
  460.         my ($name) = @_ ;
  461. my $count = 0 ;
  462. my @kept = () ;
  463. return sub { ++$count ; 
  464.      push @kept, $_ ; 
  465.      $result{$name} = "$name - $count: [@kept]" ;
  466.    }
  467.     }
  468.     $db->filter_store_key(Closure("store key")) ;
  469.     $db->filter_store_value(Closure("store value")) ;
  470.     $db->filter_fetch_key(Closure("fetch key")) ;
  471.     $db->filter_fetch_value(Closure("fetch value")) ;
  472.     $_ = "original" ;
  473.     $h{"fred"} = "joe" ;
  474.     ok(85, $result{"store key"} eq "store key - 1: [fred]");
  475.     ok(86, $result{"store value"} eq "store value - 1: [joe]");
  476.     ok(87, ! defined $result{"fetch key"} );
  477.     ok(88, ! defined $result{"fetch value"} );
  478.     ok(89, $_ eq "original") ;
  479.     ok(90, $db->FIRSTKEY() eq "fred") ;
  480.     ok(91, $result{"store key"} eq "store key - 1: [fred]");
  481.     ok(92, $result{"store value"} eq "store value - 1: [joe]");
  482.     ok(93, $result{"fetch key"} eq "fetch key - 1: [fred]");
  483.     ok(94, ! defined $result{"fetch value"} );
  484.     ok(95, $_ eq "original") ;
  485.     $h{"jim"}  = "john" ;
  486.     ok(96, $result{"store key"} eq "store key - 2: [fred jim]");
  487.     ok(97, $result{"store value"} eq "store value - 2: [joe john]");
  488.     ok(98, $result{"fetch key"} eq "fetch key - 1: [fred]");
  489.     ok(99, ! defined $result{"fetch value"} );
  490.     ok(100, $_ eq "original") ;
  491.     ok(101, $h{"fred"} eq "joe");
  492.     ok(102, $result{"store key"} eq "store key - 3: [fred jim fred]");
  493.     ok(103, $result{"store value"} eq "store value - 2: [joe john]");
  494.     ok(104, $result{"fetch key"} eq "fetch key - 1: [fred]");
  495.     ok(105, $result{"fetch value"} eq "fetch value - 1: [joe]");
  496.     ok(106, $_ eq "original") ;
  497.     undef $db ;
  498.     untie %h;
  499.     unlink $Dfile;
  500. }
  501. {
  502.    # DBM Filter recursion detection
  503.    use warnings ;
  504.    use strict ;
  505.    my (%h, $db) ;
  506.    unlink $Dfile;
  507.    ok(107, $db = tie(%h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
  508.    $db->filter_store_key (sub { $_ = $h{$_} }) ;
  509.    eval '$h{1} = 1234' ;
  510.    ok(108, $@ =~ /^recursion detected in filter_store_key at/ );
  511.    
  512.    undef $db ;
  513.    untie %h;
  514.    unlink $Dfile;
  515. }
  516. {
  517.    # Examples from the POD
  518.   my $file = "xyzt" ;
  519.   {
  520.     my $redirect = new Redirect $file ;
  521.     use warnings FATAL => qw(all);
  522.     use strict ;
  523.     use DB_File ;
  524.     use vars qw( %h $k $v ) ;
  525.     unlink "fruit" ;
  526.     tie %h, "DB_File", "fruit", O_RDWR|O_CREAT, 0640, $DB_HASH 
  527.         or die "Cannot open file 'fruit': $!n";
  528.     # Add a few key/value pairs to the file
  529.     $h{"apple"} = "red" ;
  530.     $h{"orange"} = "orange" ;
  531.     $h{"banana"} = "yellow" ;
  532.     $h{"tomato"} = "red" ;
  533.     # Check for existence of a key
  534.     print "Banana Existsnn" if $h{"banana"} ;
  535.     # Delete a key/value pair.
  536.     delete $h{"apple"} ;
  537.     # print the contents of the file
  538.     while (($k, $v) = each %h)
  539.       { print "$k -> $vn" }
  540.     untie %h ;
  541.     unlink "fruit" ;
  542.   }  
  543.   ok(109, docat_del($file) eq <<'EOM') ;
  544. Banana Exists
  545. orange -> orange
  546. tomato -> red
  547. banana -> yellow
  548. EOM
  549.    
  550. }
  551. {
  552.     # Bug ID 20001013.009
  553.     #
  554.     # test that $hash{KEY} = undef doesn't produce the warning
  555.     #     Use of uninitialized value in null operation 
  556.     use warnings ;
  557.     use strict ;
  558.     use DB_File ;
  559.     unlink $Dfile;
  560.     my %h ;
  561.     my $a = "";
  562.     local $SIG{__WARN__} = sub {$a = $_[0]} ;
  563.     
  564.     tie %h, 'DB_File', $Dfile or die "Can't open file: $!n" ;
  565.     $h{ABC} = undef;
  566.     ok(110, $a eq "") ;
  567.     untie %h ;
  568.     unlink $Dfile;
  569. }
  570. {
  571.     # test that %hash = () doesn't produce the warning
  572.     #     Argument "" isn't numeric in entersub
  573.     use warnings ;
  574.     use strict ;
  575.     use DB_File ;
  576.     unlink $Dfile;
  577.     my %h ;
  578.     my $a = "";
  579.     local $SIG{__WARN__} = sub {$a = $_[0]} ;
  580.     
  581.     tie %h, 'DB_File', $Dfile or die "Can't open file: $!n" ;
  582.     %h = (); ;
  583.     ok(111, $a eq "") ;
  584.     untie %h ;
  585.     unlink $Dfile;
  586. }
  587. exit ;