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

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: test015.tcl,v 11.20 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 15 {access method}
  9. # Partial put test when item does not exist.
  10. proc test015 { method {nentries 7500} { start 0 } args } {
  11. global fixed_len
  12. set low_range 50
  13. set mid_range 100
  14. set high_range 1000
  15. if { [is_fixed_length $method] } {
  16. set low_range [expr $fixed_len/2 - 2]
  17. set mid_range [expr $fixed_len/2]
  18. set high_range $fixed_len
  19. }
  20. set t_table {
  21. { 1 { 1 1 1 } }
  22. { 2 { 1 1 5 } }
  23. { 3 { 1 1 $low_range } }
  24. { 4 { 1 $mid_range 1 } }
  25. { 5 { $mid_range $high_range 5 } }
  26. { 6 { 1 $mid_range $low_range } }
  27. }
  28. puts "Test015: 
  29.     $method ($args) $nentries equal key/data pairs, partial put test"
  30. test015_init
  31. if { $start == 0 } {
  32. set start { 1 2 3 4 5 6 }
  33. }
  34. foreach entry $t_table {
  35. set this [lindex $entry 0]
  36. if { [lsearch $start $this] == -1 } {
  37. continue
  38. }
  39. puts -nonewline "$this: "
  40. eval [concat test015_body $method [lindex $entry 1] 
  41.     $nentries $args]
  42. }
  43. }
  44. proc test015_init { } {
  45. global rand_init
  46. berkdb srand $rand_init
  47. }
  48. proc test015_body { method off_low off_hi rcount {nentries 10000} args } {
  49. global dvals
  50. global fixed_len
  51. source ./include.tcl
  52. set args [convert_args $method $args]
  53. set omethod [convert_method $method]
  54. set checkfunc test015.check
  55. if { [is_fixed_length $method] && 
  56. [string compare $omethod "-recno"] == 0} {
  57. # is fixed recno method
  58. set checkfunc test015.check
  59. }
  60. puts "Put $rcount strings random offsets between $off_low and $off_hi"
  61. # Create the database and open the dictionary
  62. set eindex [lsearch -exact $args "-env"]
  63. #
  64. # If we are using an env, then testfile should just be the db name.
  65. # Otherwise it is the test directory and the name.
  66. if { $eindex == -1 } {
  67. set testfile $testdir/test015.db
  68. set env NULL
  69. } else {
  70. set testfile test015.db
  71. incr eindex
  72. set env [lindex $args $eindex]
  73. }
  74. set t1 $testdir/t1
  75. set t2 $testdir/t2
  76. set t3 $testdir/t3
  77. cleanup $testdir $env
  78. set db [eval {berkdb_open 
  79.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  80. error_check_good dbopen [is_valid_db $db] TRUE
  81. set pflags ""
  82. set gflags ""
  83. set txn ""
  84. set count 0
  85. puts "tTest015.a: put/get loop"
  86. # Here is the loop where we put and get each key/data pair
  87. # Each put is a partial put of a record that does not exist.
  88. set did [open $dict]
  89. while { [gets $did str] != -1 && $count < $nentries } {
  90. if { [is_record_based $method] == 1 } {
  91. if { [string length $str] > $fixed_len } {
  92. continue
  93. }
  94. set key [expr $count + 1]
  95. } else {
  96. set key $str
  97. }
  98. if { 0 } {
  99. set data [replicate $str $rcount]
  100. set off [ berkdb random_int $off_low $off_hi ]
  101. set offn [expr $off + 1]
  102. if { [is_fixed_length $method] && 
  103.     [expr [string length $data] + $off] >= $fixed_len} {
  104.     set data [string range $data 0 [expr $fixed_len-$offn]]
  105. }
  106. set dvals($key) [partial_shift $data $off right]
  107. } else {
  108. set data [chop_data $method [replicate $str $rcount]]
  109. # This is a hack.  In DB we will store the records with
  110. # some padding, but these will get lost if we just return
  111. # them in TCL.  As a result, we're going to have to hack
  112. # get to check for 0 padding and return a list consisting
  113. # of the number of 0's and the actual data.
  114. set off [ berkdb random_int $off_low $off_hi ]
  115. # There is no string concatenation function in Tcl
  116. # (although there is one in TclX), so we have to resort
  117. # to this hack. Ugh.
  118. set slen [string length $data]
  119. if {[is_fixed_length $method] && 
  120.     $slen > $fixed_len - $off} {
  121. set $slen [expr $fixed_len - $off]
  122. }
  123. set a "a"
  124. set dvals($key) [pad_data 
  125.     $method [eval "binary format x$off$a$slen" {$data}]]
  126. }
  127. if {[is_fixed_length $method] && 
  128.     [string length $data] > ($fixed_len - $off)} {
  129.     set slen [expr $fixed_len - $off]
  130.     set data [eval "binary format a$slen" {$data}]
  131. }
  132. set ret [eval {$db put} 
  133.     {-partial [list $off [string length $data]] $key $data}]
  134. error_check_good put $ret 0
  135. incr count
  136. }
  137. close $did
  138. # Now make sure that everything looks OK
  139. puts "tTest015.b: check entire file contents"
  140. dump_file $db $txn $t1 $checkfunc
  141. error_check_good db_close [$db close] 0
  142. # Now compare the keys to see if they match the dictionary (or ints)
  143. if { [is_record_based $method] == 1 } {
  144. set oid [open $t2 w]
  145. for {set i 1} {$i <= $nentries} {set i [incr i]} {
  146. puts $oid $i
  147. }
  148. close $oid
  149. filesort $t2 $t3
  150. file rename -force $t3 $t2
  151. filesort $t1 $t3
  152. } else {
  153. set q q
  154. filehead $nentries $dict $t3
  155. filesort $t3 $t2
  156. filesort $t1 $t3
  157. }
  158. error_check_good Test015:diff($t3,$t2) 
  159.     [filecmp $t3 $t2] 0
  160. puts "tTest015.c: close, open, and dump file"
  161. # Now, reopen the file and run the last test again.
  162. open_and_dump_file $testfile $env $txn $t1 
  163.     $checkfunc dump_file_direction "-first" "-next"
  164. if { [string compare $omethod "-recno"] != 0 } {
  165. filesort $t1 $t3
  166. }
  167. error_check_good Test015:diff($t3,$t2) 
  168.     [filecmp $t3 $t2] 0
  169. # Now, reopen the file and run the last test again in the
  170. # reverse direction.
  171. puts "tTest015.d: close, open, and dump file in reverse direction"
  172. open_and_dump_file $testfile $env $txn $t1 
  173.     $checkfunc dump_file_direction "-last" "-prev"
  174. if { [string compare $omethod "-recno"] != 0 } {
  175. filesort $t1 $t3
  176. }
  177. error_check_good Test015:diff($t3,$t2) 
  178.     [filecmp $t3 $t2] 0
  179. unset dvals
  180. }
  181. # Check function for test015; keys and data are identical
  182. proc test015.check { key data } {
  183. global dvals
  184. error_check_good key"$key"_exists [info exists dvals($key)] 1
  185. binary scan $data "c[string length $data]" a
  186. binary scan $dvals($key) "c[string length $dvals($key)]" b
  187. error_check_good "mismatch on padding for key $key" $a $b
  188. }
  189. proc test015.fixed.check { key data } {
  190. global dvals
  191. global fixed_len
  192. error_check_good key"$key"_exists [info exists dvals($key)] 1
  193. if { [string length $data] > $fixed_len } {
  194. error_check_bad 
  195.     "data length:[string length $data] 
  196.     for fixed:$fixed_len" 1 1
  197. }
  198. puts "$data : $dvals($key)"
  199. error_check_good compare_data($data,$dvals($key) 
  200.     $dvals($key) $data
  201. }