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

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: test031.tcl,v 11.17 2000/11/06 19:31:55 sue Exp $
  7. #
  8. # DB Test 31 {access method}
  9. # Use the first 10,000 entries from the dictionary.
  10. # Insert each with self as key and "ndups" duplicates
  11. # For the data field, prepend random five-char strings (see test032)
  12. # that we force the duplicate sorting code to do something.
  13. # Along the way, test that we cannot insert duplicate duplicates
  14. # using DB_NODUPDATA.
  15. # By setting ndups large, we can make this an off-page test
  16. # After all are entered, retrieve all; verify output.
  17. # Close file, reopen, do retrieve and re-verify.
  18. # This does not work for recno
  19. proc test031 { method {nentries 10000} {ndups 5} {tnum 31} args } {
  20. global alphabet
  21. global rand_init
  22. source ./include.tcl
  23. berkdb srand $rand_init
  24. set args [convert_args $method $args]
  25. set omethod [convert_method $method]
  26. # Create the database and open the dictionary
  27. set eindex [lsearch -exact $args "-env"]
  28. #
  29. # If we are using an env, then testfile should just be the db name.
  30. # Otherwise it is the test directory and the name.
  31. if { $eindex == -1 } {
  32. set testfile $testdir/test0$tnum.db
  33. set checkdb $testdir/checkdb.db
  34. set env NULL
  35. } else {
  36. set testfile test0$tnum.db
  37. set checkdb checkdb.db
  38. incr eindex
  39. set env [lindex $args $eindex]
  40. }
  41. set t1 $testdir/t1
  42. set t2 $testdir/t2
  43. set t3 $testdir/t3
  44. cleanup $testdir $env
  45. puts "Test0$tnum: 
  46.     $method ($args) $nentries small sorted dup key/data pairs"
  47. if { [is_record_based $method] == 1 || 
  48.     [is_rbtree $method] == 1 } {
  49. puts "Test0$tnum skipping for method $omethod"
  50. return
  51. }
  52. set db [eval {berkdb_open -create -truncate 
  53. -mode 0644} $args {$omethod -dup -dupsort $testfile}]
  54. error_check_good dbopen [is_valid_db $db] TRUE
  55. set did [open $dict]
  56. set check_db [eval {berkdb_open 
  57.      -create -truncate -mode 0644} $args {-hash $checkdb}]
  58. error_check_good dbopen:check_db [is_valid_db $check_db] TRUE
  59. set pflags ""
  60. set gflags ""
  61. set txn ""
  62. set count 0
  63. # Here is the loop where we put and get each key/data pair
  64. puts "tTest0$tnum.a: Put/get loop, check nodupdata"
  65. set dbc [eval {$db cursor} $txn]
  66. error_check_good cursor_open [is_substr $dbc $db] 1
  67. while { [gets $did str] != -1 && $count < $nentries } {
  68. # Re-initialize random string generator
  69. randstring_init $ndups
  70. set dups ""
  71. for { set i 1 } { $i <= $ndups } { incr i } {
  72. set pref [randstring]
  73. set dups $dups$pref
  74. set datastr $pref:$str
  75. if { $i == 2 } {
  76. set nodupstr $datastr
  77. }
  78. set ret [eval {$db put} 
  79.     $txn $pflags {$str [chop_data $method $datastr]}]
  80. error_check_good put $ret 0
  81. }
  82. # Test DB_NODUPDATA using the DB handle
  83. set ret [eval {$db put -nodupdata} 
  84.     $txn $pflags {$str [chop_data $method $nodupstr]}]
  85. error_check_good db_nodupdata [is_substr $ret "DB_KEYEXIST"] 1
  86. set ret [eval {$check_db put} 
  87.     $txn $pflags {$str [chop_data $method $dups]}]
  88. error_check_good checkdb_put $ret 0
  89. # Now retrieve all the keys matching this key
  90. set x 0
  91. set lastdup ""
  92. # Test DB_NODUPDATA using cursor handle
  93. set ret [$dbc get -set $str]
  94. error_check_bad dbc_get [llength $ret] 0
  95. set datastr [lindex [lindex $ret 0] 1]
  96. error_check_bad dbc_data [string length $datastr] 0
  97. set ret [eval {$dbc put -nodupdata} 
  98.     {$str [chop_data $method $datastr]}]
  99. error_check_good dbc_nodupdata [is_substr $ret "DB_KEYEXIST"] 1
  100. for {set ret [$dbc get -set $str]} 
  101.     {[llength $ret] != 0} 
  102.     {set ret [$dbc get -nextdup] } {
  103. set k [lindex [lindex $ret 0] 0]
  104. if { [string compare $k $str] != 0 } {
  105. break
  106. }
  107. set datastr [lindex [lindex $ret 0] 1]
  108. if {[string length $datastr] == 0} {
  109. break
  110. }
  111. if {[string compare 
  112.     $lastdup [pad_data $method $datastr]] > 0} {
  113. error_check_good 
  114.     sorted_dups($lastdup,$datastr) 0 1
  115. }
  116. incr x
  117. set lastdup $datastr
  118. }
  119. error_check_good "Test0$tnum:ndups:$str" $x $ndups
  120. incr count
  121. }
  122. error_check_good cursor_close [$dbc close] 0
  123. close $did
  124. # Now we will get each key from the DB and compare the results
  125. # to the original.
  126. puts "tTest0$tnum.b: Checking file for correct duplicates"
  127. set dbc [eval {$db cursor} $txn]
  128. error_check_good cursor_open(2) [is_substr $dbc $db] 1
  129. set lastkey "THIS WILL NEVER BE A KEY VALUE"
  130. # no need to delete $lastkey
  131. set firsttimethru 1
  132. for {set ret [$dbc get -first]} 
  133.     {[llength $ret] != 0} 
  134.     {set ret [$dbc get -next] } {
  135. set k [lindex [lindex $ret 0] 0]
  136. set d [lindex [lindex $ret 0] 1]
  137. error_check_bad data_check:$d [string length $d] 0
  138. if { [string compare $k $lastkey] != 0 } {
  139. # Remove last key from the checkdb
  140. if { $firsttimethru != 1 } {
  141. error_check_good check_db:del:$lastkey 
  142.     [eval {$check_db del} $txn {$lastkey}] 0
  143. }
  144. set firsttimethru 0
  145. set lastdup ""
  146. set lastkey $k
  147. set dups [lindex [lindex [eval {$check_db get} 
  148. $txn {$k}] 0] 1]
  149. error_check_good check_db:get:$k 
  150.     [string length $dups] [expr $ndups * 4]
  151. }
  152. if { [string compare $lastdup $d] > 0 } {
  153. error_check_good dup_check:$k:$d 0 1
  154. }
  155. set lastdup $d
  156. set pref [string range $d 0 3]
  157. set ndx [string first $pref $dups]
  158. error_check_good valid_duplicate [expr $ndx >= 0] 1
  159. set a [string range $dups 0 [expr $ndx - 1]]
  160. set b [string range $dups [expr $ndx + 4] end]
  161. set dups $a$b
  162. }
  163. # Remove last key from the checkdb
  164. if { [string length $lastkey] != 0 } {
  165. error_check_good check_db:del:$lastkey 
  166. [eval {$check_db del} $txn {$lastkey}] 0
  167. }
  168. # Make sure there is nothing left in check_db
  169. set check_c [eval {$check_db cursor} $txn]
  170. set ret [$check_c get -first]
  171. error_check_good check_c:get:$ret [llength $ret] 0
  172. error_check_good check_c:close [$check_c close] 0
  173. error_check_good check_db:close [$check_db close] 0
  174. error_check_good dbc_close [$dbc close] 0
  175. error_check_good db_close [$db close] 0
  176. }