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

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: test011.tcl,v 11.20 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 11 {access method}
  9. # Use the first 10,000 entries from the dictionary.
  10. # Insert each with self as key and data; add duplicate
  11. # records for each.
  12. # Then do some key_first/key_last add_before, add_after operations.
  13. # This does not work for recno
  14. # To test if dups work when they fall off the main page, run this with
  15. # a very tiny page size.
  16. proc test011 { method {nentries 10000} {ndups 5} {tnum 11} args } {
  17. global dlist
  18. global rand_init
  19. source ./include.tcl
  20. set dlist ""
  21. if { [is_rbtree $method] == 1 } {
  22. puts "Test0$tnum skipping for method $method"
  23. return
  24. }
  25. if { [is_record_based $method] == 1 } {
  26. test011_recno $method $nentries $tnum $args
  27. return
  28. } else {
  29. puts -nonewline "Test0$tnum: $method $nentries small dup "
  30. puts "key/data pairs, cursor ops"
  31. }
  32. if {$ndups < 5} {
  33. set ndups 5
  34. }
  35. set args [convert_args $method $args]
  36. set omethod [convert_method $method]
  37. berkdb srand $rand_init
  38. # Create the database and open the dictionary
  39. set eindex [lsearch -exact $args "-env"]
  40. #
  41. # If we are using an env, then testfile should just be the db name.
  42. # Otherwise it is the test directory and the name.
  43. if { $eindex == -1 } {
  44. set testfile $testdir/test0$tnum.db
  45. set env NULL
  46. } else {
  47. set testfile test0$tnum.db
  48. incr eindex
  49. set env [lindex $args $eindex]
  50. }
  51. set t1 $testdir/t1
  52. set t2 $testdir/t2
  53. set t3 $testdir/t3
  54. cleanup $testdir $env
  55. set db [eval {berkdb_open -create -truncate 
  56.     -mode 0644} [concat $args "-dup"] {$omethod $testfile}]
  57. error_check_good dbopen [is_valid_db $db] TRUE
  58. set did [open $dict]
  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. # We will add dups with values 1, 3, ... $ndups.  Then we'll add
  65. # 0 and $ndups+1 using keyfirst/keylast.  We'll add 2 and 4 using
  66. # add before and add after.
  67. puts "tTest0$tnum.a: put and get duplicate keys."
  68. set dbc [eval {$db cursor} $txn]
  69. set i ""
  70. for { set i 1 } { $i <= $ndups } { incr i 2 } {
  71. lappend dlist $i
  72. }
  73. set maxodd $i
  74. while { [gets $did str] != -1 && $count < $nentries } {
  75. for { set i 1 } { $i <= $ndups } { incr i 2 } {
  76. set datastr $i:$str
  77. set ret [eval {$db put} $txn $pflags {$str $datastr}]
  78. error_check_good put $ret 0
  79. }
  80. # Now retrieve all the keys matching this key
  81. set x 1
  82. for {set ret [$dbc get "-set" $str ]} 
  83.     {[llength $ret] != 0} 
  84.     {set ret [$dbc get "-next"] } {
  85. if {[llength $ret] == 0} {
  86. break
  87. }
  88. set k [lindex [lindex $ret 0] 0]
  89. if { [string compare $k $str] != 0 } {
  90. break
  91. }
  92. set datastr [lindex [lindex $ret 0] 1]
  93. set d [data_of $datastr]
  94. error_check_good Test0$tnum:put $d $str
  95. set id [ id_of $datastr ]
  96. error_check_good Test0$tnum:dup# $id $x
  97. incr x 2
  98. }
  99. error_check_good Test0$tnum:numdups $x $maxodd
  100. incr count
  101. }
  102. error_check_good curs_close [$dbc close] 0
  103. close $did
  104. # Now we will get each key from the DB and compare the results
  105. # to the original.
  106. puts "tTest0$tnum.b: 
  107.     traverse entire file checking duplicates before close."
  108. dup_check $db $txn $t1 $dlist
  109. # Now compare the keys to see if they match the dictionary entries
  110. set q q
  111. filehead $nentries $dict $t3
  112. filesort $t3 $t2
  113. filesort $t1 $t3
  114. error_check_good Test0$tnum:diff($t3,$t2) 
  115.     [filecmp $t3 $t2] 0
  116. error_check_good db_close [$db close] 0
  117. set db [eval {berkdb_open} $args $testfile]
  118. error_check_good dbopen [is_valid_db $db] TRUE
  119. puts "tTest0$tnum.c: 
  120.     traverse entire file checking duplicates after close."
  121. dup_check $db $txn $t1 $dlist
  122. # Now compare the keys to see if they match the dictionary entries
  123. filesort $t1 $t3
  124. error_check_good Test0$tnum:diff($t3,$t2) 
  125.     [filecmp $t3 $t2] 0
  126. puts "tTest0$tnum.d: Testing key_first functionality"
  127. add_dup $db $txn $nentries "-keyfirst" 0 0
  128. set dlist [linsert $dlist 0 0]
  129. dup_check $db $txn $t1 $dlist
  130. puts "tTest0$tnum.e: Testing key_last functionality"
  131. add_dup $db $txn $nentries "-keylast" [expr $maxodd - 1] 0
  132. lappend dlist [expr $maxodd - 1]
  133. dup_check $db $txn $t1 $dlist
  134. puts "tTest0$tnum.f: Testing add_before functionality"
  135. add_dup $db $txn $nentries "-before" 2 3
  136. set dlist [linsert $dlist 2 2]
  137. dup_check $db $txn $t1 $dlist
  138. puts "tTest0$tnum.g: Testing add_after functionality"
  139. add_dup $db $txn $nentries "-after" 4 4
  140. set dlist [linsert $dlist 4 4]
  141. dup_check $db $txn $t1 $dlist
  142. error_check_good db_close [$db close] 0
  143. }
  144. proc add_dup {db txn nentries flag dataval iter} {
  145. source ./include.tcl
  146. set dbc [eval {$db cursor} $txn]
  147. set did [open $dict]
  148. set count 0
  149. while { [gets $did str] != -1 && $count < $nentries } {
  150. set datastr $dataval:$str
  151. set ret [$dbc get "-set" $str]
  152. error_check_bad "cget(SET)" [is_substr $ret Error] 1
  153. for { set i 1 } { $i < $iter } { incr i } {
  154. set ret [$dbc get "-next"]
  155. error_check_bad "cget(NEXT)" [is_substr $ret Error] 1
  156. }
  157. if { [string compare $flag "-before"] == 0 ||
  158.     [string compare $flag "-after"] == 0 } {
  159. set ret [$dbc put $flag $datastr]
  160. } else {
  161. set ret [$dbc put $flag $str $datastr]
  162. }
  163. error_check_good "$dbc put $flag" $ret 0
  164. incr count
  165. }
  166. close $did
  167. $dbc close
  168. }
  169. proc test011_recno { method {nentries 10000} {tnum 11} largs } {
  170. global dlist
  171. source ./include.tcl
  172. set largs [convert_args $method $largs]
  173. set omethod [convert_method $method]
  174. set renum [is_rrecno $method]
  175. puts "Test0$tnum: 
  176.     $method ($largs) $nentries test cursor insert functionality"
  177. # Create the database and open the dictionary
  178. set eindex [lsearch -exact $largs "-env"]
  179. #
  180. # If we are using an env, then testfile should just be the db name.
  181. # Otherwise it is the test directory and the name.
  182. if { $eindex == -1 } {
  183. set testfile $testdir/test0$tnum.db
  184. set env NULL
  185. } else {
  186. set testfile test0$tnum.db
  187. incr eindex
  188. set env [lindex $largs $eindex]
  189. }
  190. set t1 $testdir/t1
  191. set t2 $testdir/t2
  192. set t3 $testdir/t3
  193. cleanup $testdir $env
  194. if {$renum == 1} {
  195. append largs " -renumber"
  196. }
  197. set db [eval {berkdb_open 
  198.      -create -truncate -mode 0644} $largs {$omethod $testfile}]
  199. error_check_good dbopen [is_valid_db $db] TRUE
  200. set did [open $dict]
  201. set pflags ""
  202. set gflags ""
  203. set txn ""
  204. set count 0
  205. # The basic structure of the test is that we pick a random key
  206. # in the database and then add items before, after, ?? it.  The
  207. # trickiness is that with RECNO, these are not duplicates, they
  208. # are creating new keys.  Therefore, every time we do this, the
  209. # keys assigned to other values change.  For this reason, we'll
  210. # keep the database in tcl as a list and insert properly into
  211. # it to verify that the right thing is happening.  If we do not
  212. # have renumber set, then the BEFORE and AFTER calls should fail.
  213. # Seed the database with an initial record
  214. gets $did str
  215. set ret [eval {$db put} $txn {1 [chop_data $method $str]}]
  216. error_check_good put $ret 0
  217. set count 1
  218. set dlist "NULL $str"
  219. # Open a cursor
  220. set dbc [eval {$db cursor} $txn]
  221. puts "tTest0$tnum.a: put and get entries"
  222. while { [gets $did str] != -1 && $count < $nentries } {
  223. # Pick a random key
  224. set key [berkdb random_int 1 $count]
  225. set ret [$dbc get -set $key]
  226. set k [lindex [lindex $ret 0] 0]
  227. set d [lindex [lindex $ret 0] 1]
  228. error_check_good cget:SET:key $k $key
  229. error_check_good 
  230.     cget:SET $d [pad_data $method [lindex $dlist $key]]
  231. # Current
  232. set ret [$dbc put -current [chop_data $method $str]]
  233. error_check_good cput:$key $ret 0
  234. set dlist [lreplace $dlist $key $key [pad_data $method $str]]
  235. # Before
  236. if { [gets $did str] == -1 } {
  237. continue;
  238. }
  239. if { $renum == 1 } {
  240. set ret [$dbc put 
  241.     -before [chop_data $method $str]]
  242. error_check_good cput:$key:BEFORE $ret $key
  243. set dlist [linsert $dlist $key $str]
  244. incr count
  245. # After
  246. if { [gets $did str] == -1 } {
  247. continue;
  248. }
  249. set ret [$dbc put 
  250.     -after [chop_data $method $str]]
  251. error_check_good cput:$key:AFTER $ret [expr $key + 1]
  252. set dlist [linsert $dlist [expr $key + 1] $str]
  253. incr count
  254. }
  255. # Now verify that the keys are in the right place
  256. set i 0
  257. for {set ret [$dbc get "-set" $key]} 
  258.     {[string length $ret] != 0 && $i < 3} 
  259.     {set ret [$dbc get "-next"] } {
  260. set check_key [expr $key + $i]
  261. set k [lindex [lindex $ret 0] 0]
  262. error_check_good cget:$key:loop $k $check_key
  263. set d [lindex [lindex $ret 0] 1]
  264. error_check_good cget:data $d 
  265.     [pad_data $method [lindex $dlist $check_key]]
  266. incr i
  267. }
  268. }
  269. close $did
  270. error_check_good cclose [$dbc close] 0
  271. # Create  check key file.
  272. set oid [open $t2 w]
  273. for {set i 1} {$i <= $count} {incr i} {
  274. puts $oid $i
  275. }
  276. close $oid
  277. puts "tTest0$tnum.b: dump file"
  278. dump_file $db $txn $t1 test011_check
  279. error_check_good Test0$tnum:diff($t2,$t1) 
  280.     [filecmp $t2 $t1] 0
  281. error_check_good db_close [$db close] 0
  282. puts "tTest0$tnum.c: close, open, and dump file"
  283. open_and_dump_file $testfile $env $txn $t1 test011_check 
  284.     dump_file_direction "-first" "-next"
  285. error_check_good Test0$tnum:diff($t2,$t1) 
  286.     [filecmp $t2 $t1] 0
  287. puts "tTest0$tnum.d: close, open, and dump file in reverse direction"
  288. open_and_dump_file $testfile $env $txn $t1 test011_check 
  289.     dump_file_direction "-last" "-prev"
  290. filesort $t1 $t3 -n
  291. error_check_good Test0$tnum:diff($t2,$t3) 
  292.     [filecmp $t2 $t3] 0
  293. }
  294. proc test011_check { key data } {
  295. global dlist
  296. error_check_good "get key $key" $data [lindex $dlist $key]
  297. }