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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: sdb005.tcl,v 11.12 2000/08/25 14:21:53 sue Exp $
  7. #
  8. # Test cursor operations between subdbs.
  9. #
  10. # We should test this on all btrees, all hash, and a combination thereof
  11. proc subdb005 {method {nentries 100} args } {
  12. source ./include.tcl
  13. set args [convert_args $method $args]
  14. set omethod [convert_method $method]
  15. if { [is_queue $method] == 1 } {
  16. puts "Subdb005: skipping for method $method"
  17. return
  18. }
  19. puts "Subdb005: $method ( $args ) subdb cursor operations test"
  20. set txn ""
  21. cleanup $testdir NULL
  22. set psize 8192
  23. set testfile $testdir/subdb005.db
  24. set duplist {-1 -1 -1 -1 -1}
  25. build_all_subdb 
  26.     $testfile [list $method] [list $psize] $duplist $nentries $args
  27. set numdb [llength $duplist]
  28. #
  29. # Get a cursor in each subdb and move past the end of each
  30. # subdb.  Make sure we don't end up in another subdb.
  31. #
  32. puts "tSubdb005.a: Cursor ops - first/prev and last/next"
  33. for {set i 0} {$i < $numdb} {incr i} {
  34. set db [berkdb_open -unknown $testfile sub$i.db]
  35. error_check_good dbopen [is_valid_db $db] TRUE
  36. set db_handle($i) $db
  37. # Used in 005.c test
  38. lappend subdbnames sub$i.db
  39. set dbc [eval {$db cursor} $txn]
  40. error_check_good db_cursor [is_valid_cursor $dbc $db] TRUE
  41. set d [$dbc get -first]
  42. error_check_good dbc_get [expr [llength $d] != 0] 1
  43. # Used in 005.b test
  44. set db_key($i) [lindex [lindex $d 0] 0]
  45. set d [$dbc get -prev]
  46. error_check_good dbc_get [expr [llength $d] == 0] 1
  47. set d [$dbc get -last]
  48. error_check_good dbc_get [expr [llength $d] != 0] 1
  49. set d [$dbc get -next]
  50. error_check_good dbc_get [expr [llength $d] == 0] 1
  51. }
  52. #
  53. # Get a key from each subdb and try to get this key in a
  54. # different subdb.  Make sure it fails
  55. #
  56. puts "tSubdb005.b: Get keys in different subdb's"
  57. for {set i 0} {$i < $numdb} {incr i} {
  58. set n [expr $i + 1]
  59. if {$n == $numdb} {
  60. set n 0
  61. }
  62. set db $db_handle($i)
  63. if { [is_record_based $method] == 1 } {
  64. set d [$db get -recno $db_key($n)]
  65. error_check_good 
  66.     db_get [expr [llength $d] == 0] 1
  67. } else {
  68. set d [$db get $db_key($n)]
  69. error_check_good db_get [expr [llength $d] == 0] 1
  70. }
  71. }
  72. #
  73. # Clean up
  74. #
  75. for {set i 0} {$i < $numdb} {incr i} {
  76. error_check_good db_close [$db_handle($i) close] 0
  77. }
  78. #
  79. # Check contents of DB for subdb names only.  Makes sure that
  80. # every subdbname is there and that nothing else is there.
  81. #
  82. puts "tSubdb005.c: Check DB is read-only"
  83. error_check_bad dbopen [catch 
  84.      {berkdb_open_noerr -unknown $testfile} ret] 0
  85. puts "tSubdb005.d: Check contents of DB for subdb names only"
  86. set db [berkdb_open -unknown -rdonly $testfile]
  87. error_check_good dbopen [is_valid_db $db] TRUE
  88. set subdblist [$db get -glob *]
  89. foreach kd $subdblist {
  90. # subname also used in subdb005.e,f below
  91. set subname [lindex $kd 0]
  92. set i [lsearch $subdbnames $subname]
  93. error_check_good subdb_search [expr $i != -1] 1
  94. set subdbnames [lreplace $subdbnames $i $i]
  95. }
  96. error_check_good subdb_done [llength $subdbnames] 0
  97. error_check_good db_close [$db close] 0
  98. return
  99. }