test025.tcl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1996, 1997, 1998, 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test025.tcl,v 11.11 2000/11/16 23:56:18 ubell Exp $
  7. #
  8. # DB Test 25 {method nentries}
  9. # Test the DB_APPEND flag.
  10. proc test025 { method {nentries 10000} {start 0 } {tnum "25" } args} {
  11. global kvals
  12. source ./include.tcl
  13. set args [convert_args $method $args]
  14. set omethod [convert_method $method]
  15. puts "Test0$tnum: $method ($args)"
  16. if { [string compare $omethod "-btree"] == 0 } {
  17. puts "Test0$tnum skipping for method BTREE"
  18. return
  19. }
  20. if { [string compare $omethod "-hash"] == 0 } {
  21. puts "Test0$tnum skipping for method HASH"
  22. return
  23. }
  24. # Create the database and open the dictionary
  25. set eindex [lsearch -exact $args "-env"]
  26. #
  27. # If we are using an env, then testfile should just be the db name.
  28. # Otherwise it is the test directory and the name.
  29. if { $eindex == -1 } {
  30. set testfile $testdir/test0$tnum.db
  31. set env NULL
  32. } else {
  33. set testfile test0$tnum.db
  34. incr eindex
  35. set env [lindex $args $eindex]
  36. }
  37. set t1 $testdir/t1
  38. cleanup $testdir $env
  39. set db [eval {berkdb_open 
  40.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  41. error_check_good dbopen [is_valid_db $db] TRUE
  42. set did [open $dict]
  43. puts "tTest0$tnum.a: put/get loop"
  44. set gflags " -recno"
  45. set pflags " -append"
  46. set txn ""
  47. set checkfunc test025_check
  48. # Here is the loop where we put and get each key/data pair
  49. set count $start
  50. set nentries [expr $start + $nentries]
  51. if { $count != 0 } {
  52. gets $did str
  53. set k [expr $count + 1]
  54. set kvals($k) [pad_data $method $str]
  55. set ret [eval {$db put} $txn $k {[chop_data $method $str]}]
  56. error_check_good db_put $ret 0
  57. incr count
  58. }
  59. while { [gets $did str] != -1 && $count < $nentries } {
  60. set k [expr $count + 1]
  61. set kvals($k) [pad_data $method $str]
  62. set ret [eval {$db put} $txn $pflags {[chop_data $method $str]}]
  63. error_check_good db_put $ret $k
  64. set ret [eval {$db get} $txn $gflags {$k}]
  65. error_check_good 
  66.     get $ret [list [list $k [pad_data $method $str]]]
  67. incr count
  68. if { [expr $count + 1] == 0 } {
  69. incr count
  70. }
  71. }
  72. close $did
  73. # Now we will get each key from the DB and compare the results
  74. # to the original.
  75. puts "tTest0$tnum.b: dump file"
  76. dump_file $db $txn $t1 $checkfunc
  77. error_check_good db_close [$db close] 0
  78. puts "tTest0$tnum.c: close, open, and dump file"
  79. # Now, reopen the file and run the last test again.
  80. open_and_dump_file $testfile $env $txn $t1 $checkfunc 
  81.     dump_file_direction -first -next
  82. # Now, reopen the file and run the last test again in the
  83. # reverse direction.
  84. puts "tTest0$tnum.d: close, open, and dump file in reverse direction"
  85. open_and_dump_file $testfile $env $txn $t1 $checkfunc 
  86. dump_file_direction -last -prev
  87. }
  88. proc test025_check { key data } {
  89. global kvals
  90. error_check_good key"$key"_exists [info exists kvals($key)] 1
  91. error_check_good " key/data mismatch for |$key|" $data $kvals($key)
  92. }