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

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: test002.tcl,v 11.13 2000/08/25 14:21:53 sue Exp $
  7. #
  8. # DB Test 2 {access method}
  9. # Use the first 10,000 entries from the dictionary.
  10. # Insert each with self as key and a fixed, medium length data string;
  11. # retrieve each. After all are entered, retrieve all; compare output
  12. # to original. Close file, reopen, do retrieve and re-verify.
  13. set datastr abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
  14. proc test002 { method {nentries 10000} args } {
  15. global datastr
  16. global pad_datastr
  17. source ./include.tcl
  18. set args [convert_args $method $args]
  19. set omethod [convert_method $method]
  20. puts "Test002: $method ($args) $nentries key <fixed data> pairs"
  21. set eindex [lsearch -exact $args "-env"]
  22. #
  23. # If we are using an env, then testfile should just be the db name.
  24. # Otherwise it is the test directory and the name.
  25. if { $eindex == -1 } {
  26. set testfile $testdir/test002.db
  27. set env NULL
  28. } else {
  29. set testfile test002.db
  30. incr eindex
  31. set env [lindex $args $eindex]
  32. }
  33. # Create the database and open the dictionary
  34. set t1 $testdir/t1
  35. set t2 $testdir/t2
  36. set t3 $testdir/t3
  37. cleanup $testdir $env
  38. set db [eval {berkdb_open 
  39.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  40. error_check_good dbopen [is_valid_db $db] TRUE
  41. set did [open $dict]
  42. set pflags ""
  43. set gflags ""
  44. set txn ""
  45. set count 0
  46. # Here is the loop where we put and get each key/data pair
  47. if { [is_record_based $method] == 1 } {
  48. append gflags "-recno"
  49. }
  50. set pad_datastr [pad_data $method $datastr]
  51. puts "tTest002.a: put/get loop"
  52. while { [gets $did str] != -1 && $count < $nentries } {
  53. if { [is_record_based $method] == 1 } {
  54. set key [expr $count + 1]
  55. } else {
  56. set key $str
  57. }
  58. set ret [eval {$db put} $txn $pflags {$key [chop_data $method $datastr]}]
  59. error_check_good put $ret 0
  60. set ret [eval {$db get} $gflags {$key}]
  61. error_check_good get $ret [list [list $key [pad_data $method $datastr]]]
  62. incr count
  63. }
  64. close $did
  65. # Now we will get each key from the DB and compare the results
  66. # to the original.
  67. puts "tTest002.b: dump file"
  68. dump_file $db $txn $t1 test002.check
  69. error_check_good db_close [$db close] 0
  70. # Now compare the keys to see if they match the dictionary
  71. if { [is_record_based $method] == 1 } {
  72. set oid [open $t2 w]
  73. for {set i 1} {$i <= $nentries} {set i [incr i]} {
  74. puts $oid $i
  75. }
  76. close $oid
  77. filesort $t2 $t3
  78. file rename -force $t3 $t2
  79. } else {
  80. set q q
  81. filehead $nentries $dict $t3
  82. filesort $t3 $t2
  83. }
  84. filesort $t1 $t3
  85. error_check_good Test002:diff($t3,$t2) 
  86.     [filecmp $t3 $t2] 0
  87. # Now, reopen the file and run the last test again.
  88. puts "tTest002.c: close, open, and dump file"
  89. open_and_dump_file $testfile $env $txn $t1 test002.check 
  90.     dump_file_direction "-first" "-next"
  91. if { [string compare $omethod "-recno"] != 0 } {
  92. filesort $t1 $t3
  93. }
  94. error_check_good Test002:diff($t3,$t2) 
  95.     [filecmp $t3 $t2] 0
  96. # Now, reopen the file and run the last test again in reverse direction.
  97. puts "tTest002.d: close, open, and dump file in reverse direction"
  98. open_and_dump_file $testfile $env $txn $t1 test002.check 
  99.     dump_file_direction "-last" "-prev"
  100. if { [string compare $omethod "-recno"] != 0 } {
  101. filesort $t1 $t3
  102. }
  103. error_check_good Test002:diff($t3,$t2) 
  104.     [filecmp $t3 $t2] 0
  105. }
  106. # Check function for test002; data should be fixed are identical
  107. proc test002.check { key data } {
  108. global pad_datastr
  109. error_check_good "data mismatch for key $key" $data $pad_datastr
  110. }