test043.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: test043.tcl,v 11.12 2000/08/25 14:21:56 sue Exp $
  7. #
  8. # DB Test 43 {method nentries}
  9. # Test the Record number implicit creation and renumbering options.
  10. proc test043 { method {nentries 10000} args} {
  11. source ./include.tcl
  12. set do_renumber [is_rrecno $method]
  13. set args [convert_args $method $args]
  14. set omethod [convert_method $method]
  15. puts "Test043: $method ($args)"
  16. if { [is_record_based $method] != 1 } {
  17. puts "Test043 skipping for method $method"
  18. return
  19. }
  20. # Create the database and open the dictionary
  21. set eindex [lsearch -exact $args "-env"]
  22. #
  23. # If we are using an env, then testfile should just be the db name.
  24. # Otherwise it is the test directory and the name.
  25. if { $eindex == -1 } {
  26. set testfile $testdir/test043.db
  27. set env NULL
  28. } else {
  29. set testfile test043.db
  30. incr eindex
  31. set env [lindex $args $eindex]
  32. }
  33. cleanup $testdir $env
  34. # Create the database
  35. set db [eval {berkdb_open -create -truncate -mode 0644} $args 
  36. {$omethod $testfile}]
  37. error_check_good dbopen [is_valid_db $db] TRUE
  38. set pflags ""
  39. set gflags " -recno"
  40. set txn ""
  41. # First test implicit creation and retrieval
  42. set count 1
  43. set interval 5
  44. if { $nentries < $interval } {
  45. set nentries [expr $interval + 1]
  46. }
  47. puts "tTest043.a: insert keys at $interval record intervals"
  48. while { $count <= $nentries } {
  49. set ret [eval {$db put} 
  50.     $txn $pflags {$count [chop_data $method $count]}]
  51. error_check_good "$db put $count" $ret 0
  52. set last $count
  53. incr count $interval
  54. }
  55. puts "tTest043.b: get keys using DB_FIRST/DB_NEXT"
  56. set dbc [eval {$db cursor} $txn]
  57. error_check_good "$db cursor" [is_substr $dbc $db] 1
  58. set check 1
  59. for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
  60.     set rec [$dbc get -next] } {
  61. set k [lindex [lindex $rec 0] 0]
  62. set d [pad_data $method [lindex [lindex $rec 0] 1]]
  63. error_check_good "$dbc get key==data" [pad_data $method $k] $d
  64. error_check_good "$dbc get sequential" $k $check
  65. if { $k > $nentries } {
  66. error_check_good "$dbc get key too large" $k $nentries
  67. }
  68. incr check $interval
  69. }
  70. # Now make sure that we get DB_KEYEMPTY for non-existent keys
  71. puts "tTest043.c: Retrieve non-existent keys"
  72. global errorInfo
  73. set check 1
  74. for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
  75. set rec [$dbc get -next] } {
  76. set k [lindex [lindex $rec 0] 0]
  77. set ret [eval {$db get} $txn $gflags {[expr $k + 1]}]
  78. error_check_good "$db 
  79.     get [expr $k + 1]" $ret [list]
  80. incr check $interval
  81. # Make sure we don't do a retrieve past the end of file
  82. if { $check >= $last }  {
  83. break
  84. }
  85. }
  86. # Now try deleting and make sure the right thing happens.
  87. puts "tTest043.d: Delete tests"
  88. set rec [$dbc get -first]
  89. error_check_bad "$dbc get -first" [llength $rec] 0
  90. error_check_good  "$dbc get -first key" [lindex [lindex $rec 0] 0] 1
  91. error_check_good  "$dbc get -first data" 
  92.     [lindex [lindex $rec 0] 1] [pad_data $method 1]
  93. # Delete the first item
  94. error_check_good "$dbc del" [$dbc del] 0
  95. # Retrieving 1 should always fail
  96. set ret [eval {$db get} $txn $gflags {1}]
  97. error_check_good "$db get 1" $ret [list]
  98. # Now, retrieving other keys should work; keys will vary depending
  99. # upon renumbering.
  100. if { $do_renumber == 1 } {
  101. set count [expr 0 + $interval]
  102. set max [expr $nentries - 1]
  103. } else {
  104. set count [expr 1 + $interval]
  105. set max $nentries
  106. }
  107. while { $count <= $max } {
  108. set rec [eval {$db get} $txn $gflags {$count}]
  109. if { $do_renumber == 1 } {
  110. set data [expr $count + 1]
  111. } else {
  112. set data $count
  113. }
  114. error_check_good "$db get $count" 
  115.     [pad_data $method $data] [lindex [lindex $rec 0] 1]
  116. incr count $interval
  117. }
  118. set max [expr $count - $interval]
  119. puts "tTest043.e: Verify LAST/PREV functionality"
  120. set count $max
  121. for { set rec [$dbc get -last] } { [llength $rec] != 0 } {
  122.     set rec [$dbc get -prev] } {
  123. set k [lindex [lindex $rec 0] 0]
  124. set d [lindex [lindex $rec 0] 1]
  125. if { $do_renumber == 1 } {
  126. set data [expr $k + 1]
  127. } else {
  128. set data $k
  129. }
  130. error_check_good 
  131.     "$dbc get key==data" [pad_data $method $data] $d
  132. error_check_good "$dbc get sequential" $k $count
  133. if { $k > $nentries } {
  134. error_check_good "$dbc get key too large" $k $nentries
  135. }
  136. set count [expr $count - $interval]
  137. if { $count < 1 } {
  138. break
  139. }
  140. }
  141. error_check_good dbc_close [$dbc close] 0
  142. error_check_good db_close [$db close] 0
  143. }