test032.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: test032.tcl,v 11.15 2000/08/25 14:21:55 sue Exp $
  7. #
  8. # DB Test 32 {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 the letters of the alphabet
  12. # in a random order so that we force the duplicate sorting
  13. # code to do something.
  14. # By setting ndups large, we can make this an off-page test
  15. # After all are entered; test the DB_GET_BOTH functionality
  16. # first by retrieving each dup in the file explicitly.  Then
  17. # test the failure case.
  18. proc test032 { method {nentries 10000} {ndups 5} {tnum 32} args } {
  19. global alphabet rand_init
  20. source ./include.tcl
  21. set args [convert_args $method $args]
  22. set omethod [convert_method $method]
  23. berkdb srand $rand_init
  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 checkdb $testdir/checkdb.db
  32. set env NULL
  33. } else {
  34. set testfile test0$tnum.db
  35. set checkdb checkdb.db
  36. incr eindex
  37. set env [lindex $args $eindex]
  38. }
  39. set t1 $testdir/t1
  40. set t2 $testdir/t2
  41. set t3 $testdir/t3
  42. cleanup $testdir $env
  43. puts "Test0$tnum:
  44.     $method ($args) $nentries small sorted dup key/data pairs"
  45. if { [is_record_based $method] == 1 || 
  46.     [is_rbtree $method] == 1 } {
  47. puts "Test0$tnum skipping for method $omethod"
  48. return
  49. }
  50. set db [eval {berkdb_open -create -truncate -mode 0644 
  51.     $omethod -dup -dupsort} $args {$testfile} ]
  52. error_check_good dbopen [is_valid_db $db] TRUE
  53. set did [open $dict]
  54. set check_db [eval {berkdb_open 
  55.      -create -truncate -mode 0644} $args {-hash $checkdb}]
  56. error_check_good dbopen:check_db [is_valid_db $check_db] TRUE
  57. set pflags ""
  58. set gflags ""
  59. set txn ""
  60. set count 0
  61. # Here is the loop where we put and get each key/data pair
  62. puts "tTest0$tnum.a: Put/get loop"
  63. set dbc [eval {$db cursor} $txn]
  64. error_check_good cursor_open [is_substr $dbc $db] 1
  65. while { [gets $did str] != -1 && $count < $nentries } {
  66. # Re-initialize random string generator
  67. randstring_init $ndups
  68. set dups ""
  69. for { set i 1 } { $i <= $ndups } { incr i } {
  70. set pref [randstring]
  71. set dups $dups$pref
  72. set datastr $pref:$str
  73. set ret [eval {$db put} 
  74.     $txn $pflags {$str [chop_data $method $datastr]}]
  75. error_check_good put $ret 0
  76. }
  77. set ret [eval {$check_db put} 
  78.     $txn $pflags {$str [chop_data $method $dups]}]
  79. error_check_good checkdb_put $ret 0
  80. # Now retrieve all the keys matching this key
  81. set x 0
  82. set lastdup ""
  83. for {set ret [$dbc get -set $str]} 
  84.     {[llength $ret] != 0} 
  85.     {set ret [$dbc get -nextdup] } {
  86. set k [lindex [lindex $ret 0] 0]
  87. if { [string compare $k $str] != 0 } {
  88. break
  89. }
  90. set datastr [lindex [lindex $ret 0] 1]
  91. if {[string length $datastr] == 0} {
  92. break
  93. }
  94. if {[string compare $lastdup $datastr] > 0} {
  95. error_check_good sorted_dups($lastdup,$datastr)
  96.     0 1
  97. }
  98. incr x
  99. set lastdup $datastr
  100. }
  101. error_check_good "Test0$tnum:ndups:$str" $x $ndups
  102. incr count
  103. }
  104. error_check_good cursor_close [$dbc close] 0
  105. close $did
  106. # Now we will get each key from the DB and compare the results
  107. # to the original.
  108. puts "tTest0$tnum.b: Checking file for correct duplicates (no cursor)"
  109. set check_c [eval {$check_db cursor} $txn]
  110. error_check_good check_c_open(2) 
  111.     [is_substr $check_c $check_db] 1
  112. for {set ndx 0} {$ndx < [expr 4 * $ndups]} {incr ndx 4} {
  113. for {set ret [$check_c get -first]} 
  114.     {[llength $ret] != 0} 
  115.     {set ret [$check_c get -next] } {
  116. set k [lindex [lindex $ret 0] 0]
  117. set d [lindex [lindex $ret 0] 1]
  118. error_check_bad data_check:$d [string length $d] 0
  119. set pref [string range $d $ndx [expr $ndx + 3]]
  120. set data $pref:$k
  121. set ret [eval {$db get} $txn {-get_both $k $data}]
  122. error_check_good 
  123.     get_both_data:$k $ret [list [list $k $data]]
  124. }
  125. }
  126. $db sync
  127. # Now repeat the above test using cursor ops
  128. puts "tTest0$tnum.c: Checking file for correct duplicates (cursor)"
  129. set dbc [eval {$db cursor} $txn]
  130. error_check_good cursor_open [is_substr $dbc $db] 1
  131. for {set ndx 0} {$ndx < [expr 4 * $ndups]} {incr ndx 4} {
  132. for {set ret [$check_c get -first]} 
  133.     {[llength $ret] != 0} 
  134.     {set ret [$check_c 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. set pref [string range $d $ndx [expr $ndx + 3]]
  139. set data $pref:$k
  140. set ret [eval {$dbc get} {-get_both $k $data}]
  141. error_check_good 
  142.     get_both_key:$k $ret [list [list $k $data]]
  143. }
  144. }
  145. # Now check the error case
  146. puts "tTest0$tnum.d: Check error case (no cursor)"
  147. for {set ret [$check_c get -first]} 
  148.     {[llength $ret] != 0} 
  149.     {set ret [$check_c get -next] } {
  150. set k [lindex [lindex $ret 0] 0]
  151. set d [lindex [lindex $ret 0] 1]
  152. error_check_bad data_check:$d [string length $d] 0
  153. set data XXX$k
  154. set ret [eval {$db get} $txn {-get_both $k $data}]
  155. error_check_good error_case:$k [llength $ret] 0
  156. }
  157. # Now check the error case
  158. puts "tTest0$tnum.e: Check error case (cursor)"
  159. for {set ret [$check_c get -first]} 
  160.     {[llength $ret] != 0} 
  161.     {set ret [$check_c get -next] } {
  162. set k [lindex [lindex $ret 0] 0]
  163. set d [lindex [lindex $ret 0] 1]
  164. error_check_bad data_check:$d [string length $d] 0
  165. set data XXX$k
  166. set ret [eval {$dbc get} {-get_both $k $data}]
  167. error_check_good error_case:$k [llength $ret] 0
  168. }
  169. error_check_good check_c:close [$check_c close] 0
  170. error_check_good check_db:close [$check_db close] 0
  171. error_check_good dbc_close [$dbc close] 0
  172. error_check_good db_close [$db close] 0
  173. }