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

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: test056.tcl,v 11.13 2000/08/25 14:21:57 sue Exp $
  7. #
  8. # Test056
  9. # Check if deleting a key when a cursor is on a duplicate of that key works.
  10. proc test056 { method args } {
  11. global errorInfo
  12. source ./include.tcl
  13. set args [convert_args $method $args]
  14. set omethod [convert_method $method]
  15. append args " -create -truncate -mode 0644 -dup "
  16. if { [is_record_based $method] == 1 || [is_rbtree $method] } {
  17. puts "Test056: skipping for method $method"
  18. return
  19. }
  20. puts "Test056: $method delete of key in presence of cursor"
  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/test056.db
  28. set env NULL
  29. } else {
  30. set testfile test056.db
  31. incr eindex
  32. set env [lindex $args $eindex]
  33. }
  34. cleanup $testdir $env
  35. set flags ""
  36. set txn  ""
  37. set db [eval {berkdb_open} $args {$omethod $testfile}]
  38. error_check_good db_open:dup [is_valid_db $db] TRUE
  39. set curs [eval {$db cursor} $txn]
  40. error_check_good curs_open:dup [is_substr $curs $db] 1
  41. puts "tTest056.a: Key delete with cursor on duplicate."
  42. # Put three keys in the database
  43. for { set key 1 } { $key <= 3 } {incr key} {
  44. set r [eval {$db put} $txn $flags {$key datum$key}]
  45. error_check_good put $r 0
  46. }
  47. # Retrieve keys sequentially so we can figure out their order
  48. set i 1
  49. for {set d [$curs get -first] } { [llength $d] != 0 } {
  50.     set d [$curs get -next] } {
  51. set key_set($i) [lindex [lindex $d 0] 0]
  52. incr i
  53. }
  54. # Now put in a bunch of duplicates for key 2
  55. for { set d 1 } { $d <= 5 } {incr d} {
  56. set r [eval {$db put} $txn $flags {$key_set(2) dup_$d}]
  57. error_check_good dup:put $r 0
  58. }
  59. # Now put the cursor on a duplicate of key 2
  60. # Now set the cursor on the first of the duplicate set.
  61. set r [$curs get -set $key_set(2)]
  62. error_check_bad cursor_get:DB_SET [llength $r] 0
  63. set k [lindex [lindex $r 0] 0]
  64. set d [lindex [lindex $r 0] 1]
  65. error_check_good curs_get:DB_SET:key $k $key_set(2)
  66. error_check_good curs_get:DB_SET:data $d datum$key_set(2)
  67. # Now do two nexts
  68. set r [$curs get -next]
  69. error_check_bad cursor_get:DB_NEXT [llength $r] 0
  70. set k [lindex [lindex $r 0] 0]
  71. set d [lindex [lindex $r 0] 1]
  72. error_check_good curs_get:DB_NEXT:key $k $key_set(2)
  73. error_check_good curs_get:DB_NEXT:data $d dup_1
  74. set r [$curs get -next]
  75. error_check_bad cursor_get:DB_NEXT [llength $r] 0
  76. set k [lindex [lindex $r 0] 0]
  77. set d [lindex [lindex $r 0] 1]
  78. error_check_good curs_get:DB_NEXT:key $k $key_set(2)
  79. error_check_good curs_get:DB_NEXT:data $d dup_2
  80. # Now do the delete
  81. set r [eval {$db del} $txn $flags {$key_set(2)}]
  82. error_check_good delete $r 0
  83. # Now check the get current on the cursor.
  84. set ret [$curs get -current]
  85. error_check_good curs_after_del $ret [list [list [] []]]
  86. # Now check that the rest of the database looks intact.  There
  87. # should be only two keys, 1 and 3.
  88. set r [$curs get -first]
  89. error_check_bad cursor_get:DB_FIRST [llength $r] 0
  90. set k [lindex [lindex $r 0] 0]
  91. set d [lindex [lindex $r 0] 1]
  92. error_check_good curs_get:DB_FIRST:key $k $key_set(1)
  93. error_check_good curs_get:DB_FIRST:data $d datum$key_set(1)
  94. set r [$curs get -next]
  95. error_check_bad cursor_get:DB_NEXT [llength $r] 0
  96. set k [lindex [lindex $r 0] 0]
  97. set d [lindex [lindex $r 0] 1]
  98. error_check_good curs_get:DB_NEXT:key $k $key_set(3)
  99. error_check_good curs_get:DB_NEXT:data $d datum$key_set(3)
  100. set r [$curs get -next]
  101. error_check_good cursor_get:DB_NEXT [llength $r] 0
  102. puts "tTest056.b:
  103.     Cursor delete of first item, followed by cursor FIRST"
  104. # Set to beginning
  105. set r [$curs get -first]
  106. error_check_bad cursor_get:DB_FIRST [llength $r] 0
  107. set k [lindex [lindex $r 0] 0]
  108. set d [lindex [lindex $r 0] 1]
  109. error_check_good curs_get:DB_FIRST:key $k $key_set(1)
  110. error_check_good curs_get:DB_FIRST:data $d datum$key_set(1)
  111. # Now do delete
  112. error_check_good curs_del [$curs del] 0
  113. # Now do DB_FIRST
  114. set r [$curs get -first]
  115. error_check_bad cursor_get:DB_FIRST [llength $r] 0
  116. set k [lindex [lindex $r 0] 0]
  117. set d [lindex [lindex $r 0] 1]
  118. error_check_good curs_get:DB_FIRST:key $k $key_set(3)
  119. error_check_good curs_get:DB_FIRST:data $d datum$key_set(3)
  120. error_check_good curs_close [$curs close] 0
  121. error_check_good db_close [$db close] 0
  122. }