test016.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: test016.tcl,v 11.17 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 16 {access method}
  9. # Partial put test where partial puts make the record smaller.
  10. # Use the first 10,000 entries from the dictionary.
  11. # Insert each with self as key and a fixed, medium length data string;
  12. # retrieve each. After all are entered, go back and do partial puts,
  13. # replacing a random-length string with the key value.
  14. # Then verify.
  15. set datastr abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
  16. proc test016 { method {nentries 10000} args } {
  17. global datastr
  18. global dvals
  19. global rand_init
  20. source ./include.tcl
  21. berkdb srand $rand_init
  22. set args [convert_args $method $args]
  23. set omethod [convert_method $method]
  24. if { [is_fixed_length $method] == 1 } {
  25. puts "Test016: skipping for method $method"
  26. return
  27. }
  28. puts "Test016: $method ($args) $nentries partial put shorten"
  29. # Create the database and open the dictionary
  30. set eindex [lsearch -exact $args "-env"]
  31. #
  32. # If we are using an env, then testfile should just be the db name.
  33. # Otherwise it is the test directory and the name.
  34. if { $eindex == -1 } {
  35. set testfile $testdir/test016.db
  36. set env NULL
  37. } else {
  38. set testfile test016.db
  39. incr eindex
  40. set env [lindex $args $eindex]
  41. }
  42. set t1 $testdir/t1
  43. set t2 $testdir/t2
  44. set t3 $testdir/t3
  45. cleanup $testdir $env
  46. set db [eval {berkdb_open 
  47.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  48. error_check_good dbopen [is_valid_db $db] TRUE
  49. set pflags ""
  50. set gflags ""
  51. set txn ""
  52. set count 0
  53. if { [is_record_based $method] == 1 } {
  54. append gflags " -recno"
  55. }
  56. # Here is the loop where we put and get each key/data pair
  57. puts "tTest016.a: put/get loop"
  58. set did [open $dict]
  59. while { [gets $did str] != -1 && $count < $nentries } {
  60. if { [is_record_based $method] == 1 } {
  61. set key [expr $count + 1]
  62. } else {
  63. set key $str
  64. }
  65. set ret [eval {$db put} 
  66.     $txn $pflags {$key [chop_data $method $datastr]}]
  67. error_check_good put $ret 0
  68. set ret [eval {$db get} $txn $gflags {$key}]
  69. error_check_good 
  70.     get $ret [list [list $key [pad_data $method $datastr]]]
  71. incr count
  72. }
  73. close $did
  74. # Next we will do a partial put replacement, making the data
  75. # shorter
  76. puts "tTest016.b: partial put loop"
  77. set did [open $dict]
  78. set count 0
  79. set len [string length $datastr]
  80. while { [gets $did str] != -1 && $count < $nentries } {
  81. if { [is_record_based $method] == 1 } {
  82. set key [expr $count + 1]
  83. } else {
  84. set key $str
  85. }
  86. set repl_len [berkdb random_int [string length $key] $len]
  87. set repl_off [berkdb random_int 0 [expr $len - $repl_len] ]
  88. set s1 [string range $datastr 0 [ expr $repl_off - 1] ]
  89. set s2 [string toupper $key]
  90. set s3 [string range $datastr [expr $repl_off + $repl_len] end ]
  91. set dvals($key) [pad_data $method $s1$s2$s3]
  92. set ret [eval {$db put} $txn {-partial 
  93.     [list $repl_off $repl_len] $key [chop_data $method $s2]}]
  94. error_check_good put $ret 0
  95. set ret [eval {$db get} $txn $gflags {$key}]
  96. error_check_good 
  97.     put $ret [list [list $key [pad_data $method $s1$s2$s3]]]
  98. incr count
  99. }
  100. close $did
  101. # Now we will get each key from the DB and compare the results
  102. # to the original.
  103. puts "tTest016.c: dump file"
  104. dump_file $db $txn $t1 test016.check
  105. error_check_good db_close [$db close] 0
  106. # Now compare the keys to see if they match the dictionary
  107. if { [is_record_based $method] == 1 } {
  108. set oid [open $t2 w]
  109. for {set i 1} {$i <= $nentries} {set i [incr i]} {
  110. puts $oid $i
  111. }
  112. close $oid
  113. file rename -force $t1 $t3
  114. } else {
  115. set q q
  116. filehead $nentries $dict $t3
  117. filesort $t3 $t2
  118. filesort $t1 $t3
  119. }
  120. error_check_good Test016:diff($t3,$t2) 
  121.     [filecmp $t3 $t2] 0
  122. # Now, reopen the file and run the last test again.
  123. puts "tTest016.d: close, open, and dump file"
  124. open_and_dump_file $testfile $env $txn $t1 test016.check 
  125.     dump_file_direction "-first" "-next"
  126. if { [ is_record_based $method ] == 0 } {
  127. filesort $t1 $t3
  128. }
  129. error_check_good Test016:diff($t3,$t2) 
  130.     [filecmp $t3 $t2] 0
  131. # Now, reopen the file and run the last test again in reverse direction.
  132. puts "tTest016.e: close, open, and dump file in reverse direction"
  133. open_and_dump_file $testfile $env $txn $t1 test016.check 
  134.     dump_file_direction "-last" "-prev"
  135. if { [ is_record_based $method ] == 0 } {
  136. filesort $t1 $t3
  137. }
  138. error_check_good Test016:diff($t3,$t2) 
  139.     [filecmp $t3 $t2] 0
  140. }
  141. # Check function for test016; data should be whatever is set in dvals
  142. proc test016.check { key data } {
  143. global datastr
  144. global dvals
  145. error_check_good key"$key"_exists [info exists dvals($key)] 1
  146. error_check_good "data mismatch for key $key" $data $dvals($key)
  147. }