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

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: test013.tcl,v 11.18 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 13 {access method}
  9. #
  10. # 1. Insert 10000 keys and retrieve them (equal key/data pairs).
  11. # 2. Attempt to overwrite keys with NO_OVERWRITE set (expect error).
  12. # 3. Actually overwrite each one with its datum reversed.
  13. #
  14. # No partial testing here.
  15. proc test013 { method {nentries 10000} args } {
  16. global errorCode
  17. global errorInfo
  18. global fixed_pad
  19. global fixed_len
  20. source ./include.tcl
  21. set args [convert_args $method $args]
  22. set omethod [convert_method $method]
  23. puts "Test013: $method ($args) $nentries equal key/data pairs, put test"
  24. # Create the database and open the dictionary
  25. set eindex [lsearch -exact $args "-env"]
  26. #
  27. # If we are using an env, then testfile should just be the db name.
  28. # Otherwise it is the test directory and the name.
  29. if { $eindex == -1 } {
  30. set testfile $testdir/test013.db
  31. set env NULL
  32. } else {
  33. set testfile test013.db
  34. incr eindex
  35. set env [lindex $args $eindex]
  36. }
  37. set t1 $testdir/t1
  38. set t2 $testdir/t2
  39. set t3 $testdir/t3
  40. cleanup $testdir $env
  41. set db [eval {berkdb_open 
  42.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  43. error_check_good dbopen [is_valid_db $db] TRUE
  44. set did [open $dict]
  45. set pflags ""
  46. set gflags ""
  47. set txn ""
  48. set count 0
  49. if { [is_record_based $method] == 1 } {
  50. set checkfunc test013_recno.check
  51. append gflags " -recno"
  52. global kvals
  53. } else {
  54. set checkfunc test013.check
  55. }
  56. puts "tTest013.a: put/get loop"
  57. # Here is the loop where we put and get each key/data pair
  58. while { [gets $did str] != -1 && $count < $nentries } {
  59. if { [is_record_based $method] == 1 } {
  60. set key [expr $count + 1]
  61. set kvals($key) [pad_data $method $str]
  62. } else {
  63. set key $str
  64. }
  65. set ret [eval {$db put} 
  66.     $txn $pflags {$key [chop_data $method $str]}]
  67. error_check_good put $ret 0
  68. set ret [eval {$db get} $gflags $txn {$key}]
  69. error_check_good 
  70.     get $ret [list [list $key [pad_data $method $str]]]
  71. incr count
  72. }
  73. close $did
  74. # Now we will try to overwrite each datum, but set the
  75. # NOOVERWRITE flag.
  76. puts "tTest013.b: overwrite values with NOOVERWRITE flag."
  77. set did [open $dict]
  78. set count 0
  79. while { [gets $did str] != -1 && $count < $nentries } {
  80. if { [is_record_based $method] == 1 } {
  81. set key [expr $count + 1]
  82. } else {
  83. set key $str
  84. }
  85. set ret [eval {$db put} $txn $pflags 
  86.     {-nooverwrite $key [chop_data $method $str]}]
  87. error_check_good put [is_substr $ret "DB_KEYEXIST"] 1
  88. # Value should be unchanged.
  89. set ret [eval {$db get} $txn $gflags {$key}]
  90. error_check_good 
  91.     get $ret [list [list $key [pad_data $method $str]]]
  92. incr count
  93. }
  94. close $did
  95. # Now we will replace each item with its datum capitalized.
  96. puts "tTest013.c: overwrite values with capitalized datum"
  97. set did [open $dict]
  98. set count 0
  99. while { [gets $did str] != -1 && $count < $nentries } {
  100. if { [is_record_based $method] == 1 } {
  101. set key [expr $count + 1]
  102. } else {
  103. set key $str
  104. }
  105. set rstr [string toupper $str]
  106. set r [eval {$db put} 
  107.     $txn $pflags {$key [chop_data $method $rstr]}]
  108. error_check_good put $r 0
  109. # Value should be changed.
  110. set ret [eval {$db get} $txn $gflags {$key}]
  111. error_check_good 
  112.     get $ret [list [list $key [pad_data $method $rstr]]]
  113. incr count
  114. }
  115. close $did
  116. # Now make sure that everything looks OK
  117. puts "tTest013.d: check entire file contents"
  118. dump_file $db $txn $t1 $checkfunc
  119. error_check_good db_close [$db close] 0
  120. # Now compare the keys to see if they match the dictionary (or ints)
  121. if { [is_record_based $method] == 1 } {
  122. set oid [open $t2 w]
  123. for {set i 1} {$i <= $nentries} {incr i} {
  124. puts $oid $i
  125. }
  126. close $oid
  127. file rename -force $t1 $t3
  128. } else {
  129. set q q
  130. filehead $nentries $dict $t3
  131. filesort $t3 $t2
  132. filesort $t1 $t3
  133. }
  134. error_check_good 
  135.     Test013:diff($t3,$t2) [filecmp $t3 $t2] 0
  136. puts "tTest013.e: close, open, and dump file"
  137. # Now, reopen the file and run the last test again.
  138. open_and_dump_file $testfile $env $txn $t1 $checkfunc 
  139.     dump_file_direction "-first" "-next"
  140. if { [is_record_based $method] == 0 } {
  141. filesort $t1 $t3
  142. }
  143. error_check_good 
  144.     Test013:diff($t3,$t2) [filecmp $t3 $t2] 0
  145. # Now, reopen the file and run the last test again in the
  146. # reverse direction.
  147. puts "tTest013.f: close, open, and dump file in reverse direction"
  148. open_and_dump_file $testfile $env $txn $t1 $checkfunc 
  149.     dump_file_direction "-last" "-prev"
  150. if { [is_record_based $method] == 0 } {
  151. filesort $t1 $t3
  152. }
  153. error_check_good 
  154.     Test013:diff($t3,$t2) [filecmp $t3 $t2] 0
  155. }
  156. # Check function for test013; keys and data are identical
  157. proc test013.check { key data } {
  158. error_check_good 
  159.     "key/data mismatch for $key" $data [string toupper $key]
  160. }
  161. proc test013_recno.check { key data } {
  162. global dict
  163. global kvals
  164. error_check_good key"$key"_exists [info exists kvals($key)] 1
  165. error_check_good 
  166.     "data mismatch for $key" $data [string toupper $kvals($key)]
  167. }