test030.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: test030.tcl,v 11.13 2000/08/25 14:21:55 sue Exp $
  7. #
  8. # DB Test 30: Test DB_NEXT_DUP Functionality.
  9. proc test030 { method {nentries 10000} args } {
  10. global rand_init
  11. source ./include.tcl
  12. set args [convert_args $method $args]
  13. set omethod [convert_method $method]
  14. if { [is_record_based $method] == 1 ||
  15.     [is_rbtree $method] == 1 } {
  16. puts "Test030 skipping for method $method"
  17. return
  18. }
  19. puts "Test030: $method ($args) $nentries DB_NEXT_DUP testing"
  20. berkdb srand $rand_init
  21. # Create the database and open the dictionary
  22. set eindex [lsearch -exact $args "-env"]
  23. #
  24. # If we are using an env, then testfile should just be the db name.
  25. # Otherwise it is the test directory and the name.
  26. if { $eindex == -1 } {
  27. set testfile $testdir/test030.db
  28. set cntfile $testdir/cntfile.db
  29. set env NULL
  30. } else {
  31. set testfile test030.db
  32. set cntfile cntfile.db
  33. incr eindex
  34. set env [lindex $args $eindex]
  35. }
  36. set t1 $testdir/t1
  37. set t2 $testdir/t2
  38. set t3 $testdir/t3
  39. cleanup $testdir $env
  40. set db [eval {berkdb_open -create -truncate 
  41. -mode 0644 -dup} $args {$omethod $testfile}]
  42. error_check_good dbopen [is_valid_db $db] TRUE
  43. # Use a second DB to keep track of how many duplicates
  44. # we enter per key
  45. set cntdb [eval {berkdb_open -create -truncate 
  46. -mode 0644} $args {-btree $cntfile}]
  47. error_check_good dbopen:cntfile [is_valid_db $db] TRUE
  48. set pflags ""
  49. set gflags ""
  50. set txn ""
  51. set count 0
  52. # Here is the loop where we put and get each key/data pair
  53. # We will add between 1 and 10 dups with values 1 ... dups
  54. # We'll verify each addition.
  55. set did [open $dict]
  56. puts "tTest030.a: put and get duplicate keys."
  57. set dbc [eval {$db cursor} $txn]
  58. while { [gets $did str] != -1 && $count < $nentries } {
  59. set ndup [berkdb random_int 1 10]
  60. for { set i 1 } { $i <= $ndup } { incr i 1 } {
  61. set ret [eval {$cntdb put} 
  62.     $txn $pflags {$str [chop_data $method $ndup]}]
  63. error_check_good put_cnt $ret 0
  64. set datastr $i:$str
  65. set ret [eval {$db put} 
  66.     $txn $pflags {$str [chop_data $method $datastr]}]
  67. error_check_good put $ret 0
  68. }
  69. # Now retrieve all the keys matching this key
  70. set x 0
  71. for {set ret [$dbc get -set $str]} 
  72.     {[llength $ret] != 0} 
  73.     {set ret [$dbc get -nextdup] } {
  74. incr x
  75. if { [llength $ret] == 0 } {
  76. break
  77. }
  78. set k [lindex [lindex $ret 0] 0]
  79. if { [string compare $k $str] != 0 } {
  80. break
  81. }
  82. set datastr [lindex [lindex $ret 0] 1]
  83. set d [data_of $datastr]
  84. error_check_good Test030:put $d $str
  85. set id [ id_of $datastr ]
  86. error_check_good Test030:dup# $id $x
  87. }
  88. error_check_good Test030:numdups $x $ndup
  89. incr count
  90. }
  91. close $did
  92. # Verify on sequential pass of entire file
  93. puts "tTest030.b: sequential check"
  94. # We can't just set lastkey to a null string, since that might
  95. # be a key now!
  96. set lastkey "THIS STRING WILL NEVER BE A KEY"
  97. for {set ret [$dbc get -first]} 
  98.     {[llength $ret] != 0} 
  99.     {set ret [$dbc get -next] } {
  100. # Outer loop should always get a new key
  101. set k [lindex [lindex $ret 0] 0]
  102. error_check_bad outer_get_loop:key $k $lastkey
  103. set datastr [lindex [lindex $ret 0] 1]
  104. set d [data_of $datastr]
  105. set id [ id_of $datastr ]
  106. error_check_good outer_get_loop:data $d $k
  107. error_check_good outer_get_loop:id $id 1
  108. set lastkey $k
  109. # Figure out how may dups we should have
  110. set ret [eval {$cntdb get} $txn $pflags {$k}]
  111. set ndup [lindex [lindex $ret 0] 1]
  112. set howmany 1
  113. for { set ret [$dbc get -nextdup] } 
  114.     { [llength $ret] != 0 } 
  115.     { set ret [$dbc get -nextdup] } {
  116. incr howmany
  117. set k [lindex [lindex $ret 0] 0]
  118. error_check_good inner_get_loop:key $k $lastkey
  119. set datastr [lindex [lindex $ret 0] 1]
  120. set d [data_of $datastr]
  121. set id [ id_of $datastr ]
  122. error_check_good inner_get_loop:data $d $k
  123. error_check_good inner_get_loop:id $id $howmany
  124. }
  125. error_check_good ndups_found $howmany $ndup
  126. }
  127. # Verify on key lookup
  128. puts "tTest030.c: keyed check"
  129. set cnt_dbc [$cntdb cursor]
  130. for {set ret [$cnt_dbc get -first]} 
  131.     {[llength $ret] != 0} 
  132.     {set ret [$cnt_dbc get -next] } {
  133. set k [lindex [lindex $ret 0] 0]
  134. set howmany [lindex [lindex $ret 0] 1]
  135. error_check_bad cnt_seq:data [string length $howmany] 0
  136. set i 0
  137. for {set ret [$dbc get -set $k]} 
  138.     {[llength $ret] != 0} 
  139.     {set ret [$dbc get -nextdup] } {
  140. incr i
  141. set k [lindex [lindex $ret 0] 0]
  142. set datastr [lindex [lindex $ret 0] 1]
  143. set d [data_of $datastr]
  144. set id [ id_of $datastr ]
  145. error_check_good inner_get_loop:data $d $k
  146. error_check_good inner_get_loop:id $id $i
  147. }
  148. error_check_good keyed_count $i $howmany
  149. }
  150. error_check_good cnt_curs_close [$cnt_dbc close] 0
  151. error_check_good db_curs_close [$dbc close] 0
  152. error_check_good cnt_file_close [$cntdb close] 0
  153. error_check_good db_file_close [$db close] 0
  154. }