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

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: test010.tcl,v 11.14 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 10 {access method}
  9. # Use the first 10,000 entries from the dictionary.
  10. # Insert each with self as key and data; add duplicate
  11. # records for each.
  12. # After all are entered, retrieve all; verify output.
  13. # Close file, reopen, do retrieve and re-verify.
  14. # This does not work for recno
  15. proc test010 { method {nentries 10000} {ndups 5} {tnum 10} args } {
  16. source ./include.tcl
  17. set omethod $method
  18. set args [convert_args $method $args]
  19. set omethod [convert_method $method]
  20. if { [is_record_based $method] == 1 || 
  21.     [is_rbtree $method] == 1 } {
  22. puts "Test0$tnum skipping for method $method"
  23. return
  24. }
  25. puts "Test0$tnum: $method ($args) $nentries small dup key/data pairs"
  26. # Create the database and open the dictionary
  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$tnum.db
  33. set env NULL
  34. } else {
  35. set testfile test0$tnum.db
  36. incr eindex
  37. set env [lindex $args $eindex]
  38. }
  39. set t1 $testdir/t1
  40. set t2 $testdir/t2
  41. set t3 $testdir/t3
  42. cleanup $testdir $env
  43. set db [eval {berkdb_open 
  44.      -create -truncate -mode 0644 -dup} $args {$omethod $testfile}]
  45. error_check_good dbopen [is_valid_db $db] TRUE
  46. set did [open $dict]
  47. set pflags ""
  48. set gflags ""
  49. set txn ""
  50. set count 0
  51. # Here is the loop where we put and get each key/data pair
  52. set dbc [eval {$db cursor} $txn]
  53. while { [gets $did str] != -1 && $count < $nentries } {
  54. for { set i 1 } { $i <= $ndups } { incr i } {
  55. set datastr $i:$str
  56. set ret [eval {$db put} 
  57.     $txn $pflags {$str [chop_data $method $datastr]}]
  58. error_check_good put $ret 0
  59. }
  60. # Now retrieve all the keys matching this key
  61. set x 1
  62. for {set ret [$dbc get "-set" $str]} 
  63.     {[llength $ret] != 0} 
  64.     {set ret [$dbc get "-next"] } {
  65. if {[llength $ret] == 0} {
  66. break
  67. }
  68. set k [lindex [lindex $ret 0] 0]
  69. if { [string compare $k $str] != 0 } {
  70. break
  71. }
  72. set datastr [lindex [lindex $ret 0] 1]
  73. set d [data_of $datastr]
  74. error_check_good "Test0$tnum:get" $d $str
  75. set id [ id_of $datastr ]
  76. error_check_good "Test0$tnum:dup#" $id $x
  77. incr x
  78. }
  79. error_check_good "Test0$tnum:ndups:$str" [expr $x - 1] $ndups
  80. incr count
  81. }
  82. error_check_good cursor_close [$dbc close] 0
  83. close $did
  84. # Now we will get each key from the DB and compare the results
  85. # to the original.
  86. puts "tTest0$tnum.a: Checking file for correct duplicates"
  87. set dlist ""
  88. for { set i 1 } { $i <= $ndups } {incr i} {
  89. lappend dlist $i
  90. }
  91. dup_check $db $txn $t1 $dlist
  92. # Now compare the keys to see if they match the dictionary entries
  93. set q q
  94. filehead $nentries $dict $t3
  95. filesort $t3 $t2
  96. filesort $t1 $t3
  97. error_check_good Test0$tnum:diff($t3,$t2) 
  98.     [filecmp $t3 $t2] 0
  99. error_check_good db_close [$db close] 0
  100. set db [eval {berkdb_open} $args $testfile]
  101. error_check_good dbopen [is_valid_db $db] TRUE
  102. puts "tTest0$tnum.b: Checking file for correct duplicates after close"
  103. dup_check $db $txn $t1 $dlist
  104. # Now compare the keys to see if they match the dictionary entries
  105. filesort $t1 $t3
  106. error_check_good Test0$tnum:diff($t3,$t2) 
  107.     [filecmp $t3 $t2] 0
  108. error_check_good db_close [$db close] 0
  109. }