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

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: test039.tcl,v 11.11 2000/08/25 14:21:56 sue Exp $
  7. #
  8. # DB Test 39 {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. # remove each duplicate and try DB_GET_BOTH again.
  18. proc test039 { method {nentries 10000} {ndups 5} {tnum 39} args } {
  19. global alphabet
  20. global rand_init
  21. source ./include.tcl
  22. berkdb srand $rand_init
  23. set args [convert_args $method $args]
  24. set omethod [convert_method $method]
  25. # Create the database and open the dictionary
  26. set eindex [lsearch -exact $args "-env"]
  27. #
  28. # If we are using an env, then testfile should just be the db name.
  29. # Otherwise it is the test directory and the name.
  30. if { $eindex == -1 } {
  31. set testfile $testdir/test0$tnum.db
  32. set checkdb $testdir/checkdb.db
  33. set env NULL
  34. } else {
  35. set testfile test0$tnum.db
  36. set checkdb checkdb.db
  37. incr eindex
  38. set env [lindex $args $eindex]
  39. }
  40. set t1 $testdir/t1
  41. set t2 $testdir/t2
  42. set t3 $testdir/t3
  43. cleanup $testdir $env
  44. puts "Test0$tnum: $method $nentries small unsorted dup key/data pairs"
  45. if { [is_record_based $method] == 1 || 
  46.     [is_rbtree $method] == 1 } {
  47. puts "Test0$tnum skipping for method $method"
  48. return
  49. }
  50. set db [eval {berkdb_open -create -truncate -mode 0644 
  51. $omethod -dup} $args {$testfile}]
  52. error_check_good dbopen [is_valid_db $db] TRUE
  53. set did [open $dict]
  54. set check_db 
  55.     [berkdb_open -create -truncate -mode 0644 -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. set dups ""
  67. for { set i 1 } { $i <= $ndups } { incr i } {
  68. set pref 
  69.     [string index $alphabet [berkdb random_int 0 25]]
  70. set pref $pref[string 
  71.     index $alphabet [berkdb random_int 0 25]]
  72. while { [string first $pref $dups] != -1 } {
  73. set pref [string toupper $pref]
  74. if { [string first $pref $dups] != -1 } {
  75. set pref [string index $alphabet 
  76.     [berkdb random_int 0 25]]
  77. set pref $pref[string index $alphabet 
  78.     [berkdb random_int 0 25]]
  79. }
  80. }
  81. if { [string length $dups] == 0 } {
  82. set dups $pref
  83. } else {
  84. set dups "$dups $pref"
  85. }
  86. set datastr $pref:$str
  87. set ret [eval {$db put} 
  88.     $txn $pflags {$str [chop_data $method $datastr]}]
  89. error_check_good put $ret 0
  90. }
  91. set ret [eval {$check_db put} 
  92.     $txn $pflags {$str [chop_data $method $dups]}]
  93. error_check_good checkdb_put $ret 0
  94. # Now retrieve all the keys matching this key
  95. set x 0
  96. set lastdup ""
  97. for {set ret [$dbc get -set $str]} 
  98.     {[llength $ret] != 0} 
  99.     {set ret [$dbc get -nextdup] } {
  100. set k [lindex [lindex $ret 0] 0]
  101. if { [string compare $k $str] != 0 } {
  102. break
  103. }
  104. set datastr [lindex [lindex $ret 0] 1]
  105. if {[string length $datastr] == 0} {
  106. break
  107. }
  108. set xx [expr $x * 3]
  109. set check_data 
  110.     [string range $dups $xx [expr $xx + 1]]:$k
  111. error_check_good retrieve $datastr $check_data
  112. incr x
  113. }
  114. error_check_good "Test0$tnum:ndups:$str" $x $ndups
  115. incr count
  116. }
  117. error_check_good cursor_close [$dbc close] 0
  118. close $did
  119. # Now check the duplicates, then delete then recheck
  120. puts "tTest0$tnum.b: Checking and Deleting duplicates"
  121. set dbc [eval {$db cursor} $txn]
  122. error_check_good cursor_open [is_substr $dbc $db] 1
  123. set check_c [eval {$check_db cursor} $txn]
  124. error_check_good cursor_open [is_substr $check_c $check_db] 1
  125. for {set ndx 0} {$ndx < $ndups} {incr ndx} {
  126. for {set ret [$check_c get -first]} 
  127.     {[llength $ret] != 0} 
  128.     {set ret [$check_c get -next] } {
  129. set k [lindex [lindex $ret 0] 0]
  130. set d [lindex [lindex $ret 0] 1]
  131. error_check_bad data_check:$d [string length $d] 0
  132. set nn [expr $ndx * 3]
  133. set pref [string range $d $nn [expr $nn + 1]]
  134. set data $pref:$k
  135. set ret 
  136.     [eval {$dbc get} $txn $gflags {-get_both $k $data}]
  137. error_check_good 
  138.     get_both_key:$k [lindex [lindex $ret 0] 0] $k
  139. error_check_good 
  140.     get_both_data:$k [lindex [lindex $ret 0] 1] $data
  141. set ret [$dbc del]
  142. error_check_good del $ret 0
  143. set ret 
  144.     [eval {$dbc get} $txn $gflags {-get_both $k $data}]
  145. error_check_good error_case:$k [llength $ret] 0
  146. if {$ndx != 0} {
  147. set n [expr ($ndx - 1) * 3]
  148. set pref [string range $d $n [expr $n + 1]]
  149. set data $pref:$k
  150. set ret [eval {$dbc get} 
  151.     $txn $gflags {-get_both $k $data}]
  152. error_check_good error_case:$k [llength $ret] 0
  153. }
  154. }
  155. }
  156. error_check_good check_c:close [$check_c close] 0
  157. error_check_good check_db:close [$check_db close] 0
  158. error_check_good dbc_close [$dbc close] 0
  159. error_check_good db_close [$db close] 0
  160. }