destroy.t
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 3k
Category:

MySQL

Development Platform:

Visual C++

  1. #!./perl -w
  2. use strict ;
  3. BEGIN {
  4.     unless(grep /blib/, @INC) {
  5.         chdir 't' if -d 't';
  6.         @INC = '../lib' if -d '../lib';
  7.     }
  8. }
  9. use BerkeleyDB; 
  10. use File::Path qw(rmtree);
  11. print "1..13n";
  12. {
  13.     package LexFile ;
  14.     sub new
  15.     {
  16.         my $self = shift ;
  17.         unlink @_ ;
  18.         bless [ @_ ], $self ;
  19.     }
  20.     sub DESTROY
  21.     {
  22.         my $self = shift ;
  23.         unlink @{ $self } ;
  24.     }
  25. }
  26. sub ok
  27. {
  28.     my $no = shift ;
  29.     my $result = shift ;
  30.  
  31.     print "not " unless $result ;
  32.     print "ok $non" ;
  33. }
  34. sub docat
  35. {
  36.     my $file = shift;
  37.     local $/ = undef;
  38.     open(CAT,$file) || die "Cannot open $file:$!";
  39.     my $result = <CAT>;
  40.     close(CAT);
  41.     return $result;
  42. }
  43. my $Dfile = "dbhash.tmp";
  44. my $home = "./fred" ;
  45. umask(0);
  46. {
  47.     # let object destroction kill everything
  48.     my $lex = new LexFile $Dfile ;
  49.     my %hash ;
  50.     my $value ;
  51.     rmtree $home if -e $home ;
  52.     ok 1, mkdir($home, 0777) ;
  53.     ok 2, my $env = new BerkeleyDB::Env -Home => $home,
  54.      -Flags => DB_CREATE|DB_INIT_TXN|
  55.    DB_INIT_MPOOL|DB_INIT_LOCK ;
  56.     ok 3, my $txn = $env->txn_begin() ;
  57.     ok 4, my $db1 = tie %hash, 'BerkeleyDB::Hash', -Filename => $Dfile,
  58.                                                -Flags     => DB_CREATE ,
  59.         -Env     => $env,
  60.      -Txn    => $txn  ;
  61.     
  62.     # create some data
  63.     my %data =  (
  64. "red" => "boat",
  65. "green" => "house",
  66. "blue" => "sea",
  67. ) ;
  68.     my $ret = 0 ;
  69.     while (my ($k, $v) = each %data) {
  70.         $ret += $db1->db_put($k, $v) ;
  71.     }
  72.     ok 5, $ret == 0 ;
  73.     # should be able to see all the records
  74.     ok 6, my $cursor = $db1->db_cursor() ;
  75.     my ($k, $v) = ("", "") ;
  76.     my $count = 0 ;
  77.     # sequence forwards
  78.     while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
  79.         ++ $count ;
  80.     }
  81.     ok 7, $count == 3 ;
  82.     undef $cursor ;
  83.     # now abort the transaction
  84.     ok 8, $txn->txn_abort() == 0 ;
  85.     # there shouldn't be any records in the database
  86.     $count = 0 ;
  87.     # sequence forwards
  88.     ok 9, $cursor = $db1->db_cursor() ;
  89.     while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
  90.         ++ $count ;
  91.     }
  92.     ok 10, $count == 0 ;
  93.     #undef $txn ;
  94.     #undef $cursor ;
  95.     #undef $db1 ;
  96.     #undef $env ;
  97.     #untie %hash ;
  98. }
  99. {
  100.     my $lex = new LexFile $Dfile ;
  101.     my %hash ;
  102.     my $cursor ;
  103.     my ($k, $v) = ("", "") ;
  104.     ok 11, my $db1 = tie %hash, 'BerkeleyDB::Hash', 
  105. -Filename => $Dfile,
  106.                 -Flags => DB_CREATE ;
  107.     my $count = 0 ;
  108.     # sequence forwards
  109.     ok 12, $cursor = $db1->db_cursor() ;
  110.     while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
  111.         ++ $count ;
  112.     }
  113.     ok 13, $count == 0 ;
  114. }
  115. rmtree $home ;