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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: sdb002.tcl,v 11.20 2000/09/20 13:22:04 sue Exp $
  7. #
  8. # Sub DB Test 2 {access method}
  9. # Use the first 10,000 entries from the dictionary.
  10. # Insert each with self as key and data; retrieve each.
  11. # After all are entered, retrieve all; compare output to original.
  12. # Close file, reopen, do retrieve and re-verify.
  13. # Then repeat using an environment.
  14. proc subdb002 { method {nentries 10000} args } {
  15. source ./include.tcl
  16. set largs [convert_args $method $args]
  17. set omethod [convert_method $method]
  18. env_cleanup $testdir
  19. puts "Subdb002: $method ($largs) basic subdb tests"
  20. set testfile $testdir/subdb002.db
  21. subdb002_body $method $omethod $nentries $largs $testfile NULL
  22. cleanup $testdir NULL
  23. set env [berkdb env -create -mode 0644 -txn -home $testdir]
  24. error_check_good env_open [is_valid_env $env] TRUE
  25. puts "Subdb002: $method ($largs) basic subdb tests in an environment"
  26. # We're in an env--use default path to database rather than specifying
  27. # it explicitly.
  28. set testfile subdb002.db
  29. subdb002_body $method $omethod $nentries $largs $testfile $env
  30. error_check_good env_close [$env close] 0
  31. }
  32. proc subdb002_body { method omethod nentries largs testfile env } {
  33. source ./include.tcl
  34. # Create the database and open the dictionary
  35. set subdb subdb0
  36. set t1 $testdir/t1
  37. set t2 $testdir/t2
  38. set t3 $testdir/t3
  39. if { [is_queue $omethod] == 1 } {
  40. set sdb002_open berkdb_open_noerr
  41. } else {
  42. set sdb002_open berkdb_open
  43. }
  44. if { $env == "NULL" } {
  45. set ret [catch {eval {$sdb002_open -create -mode 0644} $largs 
  46.     {$omethod $testfile $subdb}} db]
  47. } else {
  48. set ret [catch {eval {$sdb002_open -create -mode 0644} $largs 
  49.     {-env $env $omethod $testfile $subdb}} db]
  50. }
  51. #
  52. # If -queue method, we need to make sure that trying to
  53. # create a subdb fails.
  54. if { [is_queue $method] == 1 } {
  55. error_check_bad dbopen $ret 0
  56. puts "Subdb002: skipping remainder of test for method $method"
  57. return
  58. }
  59. error_check_good dbopen $ret 0
  60. error_check_good dbopen [is_valid_db $db] TRUE
  61. set did [open $dict]
  62. set pflags ""
  63. set gflags ""
  64. set txn ""
  65. set count 0
  66. if { [is_record_based $method] == 1 } {
  67. set checkfunc subdb002_recno.check
  68. append gflags " -recno"
  69. } else {
  70. set checkfunc subdb002.check
  71. }
  72. puts "tSubdb002.a: put/get loop"
  73. # Here is the loop where we put and get each key/data pair
  74. while { [gets $did str] != -1 && $count < $nentries } {
  75. if { [is_record_based $method] == 1 } {
  76. global kvals
  77. set key [expr $count + 1]
  78. set kvals($key) [pad_data $method $str]
  79. } else {
  80. set key $str
  81. }
  82. set ret [eval 
  83.     {$db put} $txn $pflags {$key [chop_data $method $str]}]
  84. error_check_good put $ret 0
  85. set ret [eval {$db get} $gflags {$key}]
  86. error_check_good 
  87.     get $ret [list [list $key [pad_data $method $str]]]
  88. incr count
  89. }
  90. close $did
  91. # Now we will get each key from the DB and compare the results
  92. # to the original.
  93. puts "tSubdb002.b: dump file"
  94. dump_file $db $txn $t1 $checkfunc
  95. error_check_good db_close [$db close] 0
  96. # Now compare the keys to see if they match the dictionary (or ints)
  97. if { [is_record_based $method] == 1 } {
  98. set oid [open $t2 w]
  99. for {set i 1} {$i <= $nentries} {set i [incr i]} {
  100. puts $oid $i
  101. }
  102. close $oid
  103. file rename -force $t1 $t3
  104. } else {
  105. set q q
  106. filehead $nentries $dict $t3
  107. filesort $t3 $t2
  108. filesort $t1 $t3
  109. }
  110. error_check_good Subdb002:diff($t3,$t2) 
  111.     [filecmp $t3 $t2] 0
  112. puts "tSubdb002.c: close, open, and dump file"
  113. # Now, reopen the file and run the last test again.
  114. open_and_dump_subfile $testfile $env $txn $t1 $checkfunc 
  115.     dump_file_direction "-first" "-next" $subdb
  116. if { [is_record_based $method] != 1 } {
  117. filesort $t1 $t3
  118. }
  119. error_check_good Subdb002:diff($t2,$t3) 
  120.     [filecmp $t2 $t3] 0
  121. # Now, reopen the file and run the last test again in the
  122. # reverse direction.
  123. puts "tSubdb002.d: close, open, and dump file in reverse direction"
  124. open_and_dump_subfile $testfile $env $txn $t1 $checkfunc 
  125.     dump_file_direction "-last" "-prev" $subdb
  126. if { [is_record_based $method] != 1 } {
  127. filesort $t1 $t3
  128. }
  129. error_check_good Subdb002:diff($t3,$t2) 
  130.     [filecmp $t3 $t2] 0
  131. }
  132. # Check function for Subdb002; keys and data are identical
  133. proc subdb002.check { key data } {
  134. error_check_good "key/data mismatch" $data $key
  135. }
  136. proc subdb002_recno.check { key data } {
  137. global dict
  138. global kvals
  139. error_check_good key"$key"_exists [info exists kvals($key)] 1
  140. error_check_good "key/data mismatch, key $key" $data $kvals($key)
  141. }