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

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: test057.tcl,v 11.17 2000/08/25 14:21:57 sue Exp $
  7. #
  8. # Test057:
  9. # Check if we handle the case where we delete a key with the cursor on it
  10. # and then add the same key.  The cursor should not get the new item
  11. # returned, but the item shouldn't disappear.
  12. # Run test tests, one where the overwriting put is done with a put and
  13. # one where it's done with a cursor put.
  14. proc test057 { method args } {
  15. global errorInfo
  16. source ./include.tcl
  17. set args [convert_args $method $args]
  18. set omethod [convert_method $method]
  19. append args " -create -truncate -mode 0644 -dup "
  20. if { [is_record_based $method] == 1 || [is_rbtree $method] == 1 } {
  21. puts "Test057: skipping for method $method"
  22. return
  23. }
  24. puts "Test057: $method delete and replace in presence of cursor."
  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/test057.db
  32. set env NULL
  33. } else {
  34. set testfile test057.db
  35. incr eindex
  36. set env [lindex $args $eindex]
  37. }
  38. cleanup $testdir $env
  39. set flags ""
  40. set txn ""
  41. set db [eval {berkdb_open} $args {$omethod $testfile}]
  42. error_check_good dbopen:dup [is_valid_db $db] TRUE
  43. set curs [eval {$db cursor} $txn]
  44. error_check_good curs_open:dup [is_substr $curs $db] 1
  45. puts "tTest057.a: Set cursor, delete cursor, put with key."
  46. # Put three keys in the database
  47. for { set key 1 } { $key <= 3 } {incr key} {
  48. set r [eval {$db put} $txn $flags {$key datum$key}]
  49. error_check_good put $r 0
  50. }
  51. # Retrieve keys sequentially so we can figure out their order
  52. set i 1
  53. for {set d [$curs get -first] } {[llength $d] != 0 } {
  54. set d [$curs get -next] } {
  55. set key_set($i) [lindex [lindex $d 0] 0]
  56. incr i
  57. }
  58. # Now put in a bunch of duplicates for key 2
  59. for { set d 1 } { $d <= 5 } {incr d} {
  60. set r [eval {$db put} $txn $flags {$key_set(2) dup_$d}]
  61. error_check_good dup:put $r 0
  62. }
  63. # Now put the cursor on key 1
  64. # Now set the cursor on the first of the duplicate set.
  65. set r [$curs get -set $key_set(1)]
  66. error_check_bad cursor_get:DB_SET [llength $r] 0
  67. set k [lindex [lindex $r 0] 0]
  68. set d [lindex [lindex $r 0] 1]
  69. error_check_good curs_get:DB_SET:key $k $key_set(1)
  70. error_check_good curs_get:DB_SET:data $d datum$key_set(1)
  71. # Now do the delete
  72. set r [$curs del]
  73. error_check_good delete $r 0
  74. # Now check the get current on the cursor.
  75. error_check_good curs_get:del [$curs get -current] [list [list [] []]]
  76. # Now do a put on the key
  77. set r [eval {$db put} $txn $flags {$key_set(1) new_datum$key_set(1)}]
  78. error_check_good put $r 0
  79. # Do a get
  80. set r [eval {$db get} $txn {$key_set(1)}]
  81. error_check_good get [lindex [lindex $r 0] 1] new_datum$key_set(1)
  82. # Recheck cursor
  83. error_check_good curs_get:deleted [$curs get -current] [list [list [] []]]
  84. # Move cursor and see if we get the key.
  85. set r [$curs get -first]
  86. error_check_bad cursor_get:DB_FIRST [llength $r] 0
  87. set k [lindex [lindex $r 0] 0]
  88. set d [lindex [lindex $r 0] 1]
  89. error_check_good curs_get:DB_FIRST:key $k $key_set(1)
  90. error_check_good curs_get:DB_FIRST:data $d new_datum$key_set(1)
  91. puts "tTest057.b: Set two cursor on a key, delete one, overwrite other"
  92. set curs2 [eval {$db cursor} $txn]
  93. error_check_good curs2_open [is_substr $curs2 $db] 1
  94. # Set both cursors on the 4rd key
  95. set r [$curs get -set $key_set(3)]
  96. error_check_bad cursor_get:DB_SET [llength $r] 0
  97. set k [lindex [lindex $r 0] 0]
  98. set d [lindex [lindex $r 0] 1]
  99. error_check_good curs_get:DB_SET:key $k $key_set(3)
  100. error_check_good curs_get:DB_SET:data $d datum$key_set(3)
  101. set r [$curs2 get -set $key_set(3)]
  102. error_check_bad cursor2_get:DB_SET [llength $r] 0
  103. set k [lindex [lindex $r 0] 0]
  104. set d [lindex [lindex $r 0] 1]
  105. error_check_good curs2_get:DB_SET:key $k $key_set(3)
  106. error_check_good curs2_get:DB_SET:data $d datum$key_set(3)
  107. # Now delete through cursor 1
  108. error_check_good curs1_del [$curs del] 0
  109. # Verify gets on both 1 and 2
  110. error_check_good curs_get:deleted [$curs get -current] 
  111.     [list [list [] []]]
  112. error_check_good curs_get:deleted [$curs2 get -current] 
  113.     [list [list [] []]]
  114. # Now do a replace through cursor 2
  115. set pflags "-current"
  116. if {[is_hash $method] == 1} {
  117. error_check_good curs1_get_after_del [is_substr 
  118.     [$curs2 put $pflags new_datum$key_set(3)] "DB_NOTFOUND"] 1
  119. # Gets fail
  120. error_check_good curs1_get:deleted  
  121.     [$curs get -current] 
  122.     [list [list [] []]]
  123. error_check_good curs2_get:deleted  
  124.     [$curs get -current] 
  125.     [list [list [] []]]
  126. } else {
  127. # btree only, recno is skipped this test
  128. set ret [$curs2 put $pflags new_datum$key_set(3)]
  129. error_check_good curs_replace $ret 0
  130. }
  131. # Gets fail
  132. #error_check_good curs1_get:deleted [catch {$curs get -current} r] 1
  133. #error_check_good curs1_get_after_del 
  134.     [is_substr $errorInfo "DB_KEYEMPTY"] 1
  135. #error_check_good curs2_get:deleted [catch {$curs2 get -current} r] 1
  136. #error_check_good curs2_get_after_del 
  137.     [is_substr $errorInfo "DB_KEYEMPTY"] 1
  138. puts "tTest057.c:
  139.     Set two cursors on a dup, delete one, overwrite other"
  140. # Set both cursors on the 2nd duplicate of key 2
  141. set r [$curs get -set $key_set(2)]
  142. error_check_bad cursor_get:DB_SET [llength $r] 0
  143. set k [lindex [lindex $r 0] 0]
  144. set d [lindex [lindex $r 0] 1]
  145. error_check_good curs_get:DB_SET:key $k $key_set(2)
  146. error_check_good curs_get:DB_SET:data $d datum$key_set(2)
  147. set r [$curs get -next]
  148. error_check_bad cursor_get:DB_NEXT [llength $r] 0
  149. set k [lindex [lindex $r 0] 0]
  150. set d [lindex [lindex $r 0] 1]
  151. error_check_good curs_get:DB_NEXT:key $k $key_set(2)
  152. error_check_good curs_get:DB_NEXT:data $d dup_1
  153. set r [$curs2 get -set $key_set(2)]
  154. error_check_bad cursor2_get:DB_SET [llength $r] 0
  155. set k [lindex [lindex $r 0] 0]
  156. set d [lindex [lindex $r 0] 1]
  157. error_check_good curs2_get:DB_SET:key $k $key_set(2)
  158. error_check_good curs2_get:DB_SET:data $d datum$key_set(2)
  159. set r [$curs2 get -next]
  160. error_check_bad cursor2_get:DB_NEXT [llength $r] 0
  161. set k [lindex [lindex $r 0] 0]
  162. set d [lindex [lindex $r 0] 1]
  163. error_check_good curs2_get:DB_NEXT:key $k $key_set(2)
  164. error_check_good curs2_get:DB_NEXT:data $d dup_1
  165. # Now delete through cursor 1
  166. error_check_good curs1_del [$curs del] 0
  167. # Verify gets on both 1 and 2
  168. error_check_good curs_get:deleted [$curs get -current] 
  169.     [list [list [] []]]
  170. error_check_good curs_get:deleted [$curs2 get -current] 
  171.     [list [list [] []]]
  172. # Now do a replace through cursor 2 -- this will work on btree but
  173. # not on hash
  174. if {[is_hash $method] == 1} {
  175. error_check_good hash_replace 
  176.     [is_substr [$curs2 put -current new_dup_1] "DB_NOTFOUND"] 1
  177. } else {
  178. error_check_good curs_replace [$curs2 put -current new_dup_1] 0
  179. }
  180. # Both gets should fail
  181. #error_check_good curs1_get:deleted [catch {$curs get -current} r] 1
  182. #error_check_good curs1_get_after_del 
  183.     [is_substr $errorInfo "DB_KEYEMPTY"] 1
  184. #error_check_good curs2_get:deleted [catch {$curs2 get -current} r] 1
  185. #error_check_good curs2_get_after_del 
  186.     [is_substr $errorInfo "DB_KEYEMPTY"] 1
  187. error_check_good curs2_close [$curs2 close] 0
  188. error_check_good curs_close [$curs close] 0
  189. error_check_good db_close [$db close] 0
  190. }