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

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: test049.tcl,v 11.15 2000/08/25 14:21:56 sue Exp $
  7. #
  8. # Test 049: Test of each cursor routine with unitialized cursors
  9. proc test049 { method args } {
  10. global errorInfo
  11. global errorCode
  12. source ./include.tcl
  13. set tstn 049
  14. set renum [is_rrecno $method]
  15. set args [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. puts "tTest$tstn: Test of cursor routines with unitialized cursors."
  18. set key "key"
  19. set data "data"
  20. set txn ""
  21. set flags ""
  22. set rflags ""
  23. if { [is_record_based $method] == 1 } {
  24. set key ""
  25. }
  26. puts "tTest$tstn.a: Create $method database."
  27. set eindex [lsearch -exact $args "-env"]
  28. #
  29. # If we are using an env, then testfile should just be the db name.
  30. # Otherwise it is the test directory and the name.
  31. if { $eindex == -1 } {
  32. set testfile $testdir/test0$tstn.db
  33. set env NULL
  34. } else {
  35. set testfile test0$tstn.db
  36. incr eindex
  37. set env [lindex $args $eindex]
  38. }
  39. set t1 $testdir/t1
  40. cleanup $testdir $env
  41. set oflags "-create -truncate -mode 0644 $rflags $omethod $args"
  42. if { [is_record_based $method] == 0 && [is_rbtree $method] != 1 } {
  43. append oflags " -dup"
  44. }
  45. set db [eval {berkdb_open_noerr} $oflags $testfile]
  46. error_check_good dbopen [is_valid_db $db] TRUE
  47. set dbc_u [$db cursor]
  48. error_check_good db:cursor [is_substr $dbc_u $db] 1
  49. set nkeys 10
  50. puts "tTest$tstn.b: Fill page with $nkeys small key/data pairs."
  51. for { set i 1 } { $i <= $nkeys } { incr i } {
  52. set ret [$db put $key$i $data$i]
  53. error_check_good dbput:$i $ret 0
  54. if { $i == 1 } {
  55. for {set j 0} { $j < [expr $nkeys / 2]} {incr j} {
  56. set ret [$db put $key$i DUPLICATE$j]
  57. error_check_good dbput:dup:$j $ret 0
  58. }
  59. }
  60. }
  61. # DBC GET
  62. puts "tTest$tstn.c: Test dbc->get interfaces..."
  63. set i 0
  64. foreach flag { current first last next prev nextdup} {
  65. puts "tt...dbc->get($flag)"
  66. catch {$dbc_u get -$flag} ret
  67. error_check_good dbc:get:$flag [is_substr $errorCode EINVAL] 1
  68. }
  69. foreach flag { set set_range get_both} {
  70. puts "tt...dbc->get($flag)"
  71. if { [string compare $flag get_both] == 0} {
  72. catch {$dbc_u get -$flag $key$i data0} ret
  73. } else {
  74. catch {$dbc_u get -$flag $key$i} ret
  75. }
  76. error_check_good dbc:get:$flag [is_substr $errorCode EINVAL] 1
  77. }
  78. puts "tt...dbc->get(current, partial)"
  79. catch {$dbc_u get -current -partial {0 0}} ret
  80. error_check_good dbc:get:partial [is_substr $errorCode EINVAL] 1
  81. puts "tt...dbc->get(current, rmw)"
  82. catch {$dbc_u get -rmw -current } ret
  83. error_check_good dbc_get:rmw [is_substr $errorCode EINVAL] 1
  84. puts "tTest$tstn.d: Test dbc->put interface..."
  85. # partial...depends on another
  86. foreach flag { after before current keyfirst keylast } {
  87. puts "tt...dbc->put($flag)"
  88. if { [string match key* $flag] == 1 } {
  89.   if { [is_record_based $method] == 1 } {
  90. # keyfirst/keylast not allowed in recno
  91. puts "tt...Skipping dbc->put($flag) for $method."
  92. continue
  93.   } else {
  94. # keyfirst/last should succeed
  95. puts "tt...dbc->put($flag)...should succeed for $method"
  96. error_check_good dbcput:$flag 
  97.     [$dbc_u put -$flag $key$i data0] 0
  98. # now uninitialize cursor
  99. error_check_good dbc_close [$dbc_u close] 0
  100. set dbc_u [$db cursor]
  101. error_check_good 
  102.     db_cursor [is_substr $dbc_u $db] 1
  103. }
  104. } elseif { [string compare $flag before ] == 0 ||
  105.     [string compare $flag after ] == 0 } {
  106. if { [is_record_based $method] == 0 &&
  107.     [is_rbtree $method] == 0} {
  108. set ret [$dbc_u put -$flag data0]
  109. error_check_good "$dbc_u:put:-$flag" $ret 0
  110. } elseif { $renum == 1 } {
  111. # Renumbering recno will return a record number
  112. set currecno 
  113.     [lindex [lindex [$dbc_u get -current] 0] 0]
  114. set ret [$dbc_u put -$flag data0]
  115. if { [string compare $flag after] == 0 } {
  116. error_check_good "$dbc_u put $flag" 
  117.     $ret [expr $currecno + 1]
  118. } else {
  119. error_check_good "$dbc_u put $flag" 
  120.     $ret $currecno
  121. }
  122. } else {
  123. puts "ttSkipping $flag for $method"
  124. }
  125. } else {
  126. set ret [$dbc_u put -$flag data0]
  127. error_check_good "$dbc_u:put:-$flag" $ret 0
  128. }
  129. }
  130. # and partial
  131. puts "tt...dbc->put(partial)"
  132. catch {$dbc_u put -partial {0 0} $key$i $data$i} ret
  133. error_check_good dbc_put:partial [is_substr $errorCode EINVAL] 1
  134. # XXX dbc->dup, db->join (dbc->get join_item)
  135. # dbc del
  136. puts "tTest$tstn.e: Test dbc->del interface."
  137. catch {$dbc_u del} ret
  138. error_check_good dbc_del [is_substr $errorCode EINVAL] 1
  139. error_check_good dbc_close [$dbc_u close] 0
  140. error_check_good db_close [$db close] 0
  141. puts "tTest$tstn complete."
  142. }