test008.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: test008.tcl,v 11.17 2000/10/19 17:35:39 sue Exp $
  7. #
  8. # DB Test 8 {access method}
  9. # Take the source files and dbtest executable and enter their names as the
  10. # key with their contents as data.  After all are entered, begin looping
  11. # through the entries; deleting some pairs and then readding them.
  12. proc test008 { method {nentries 10000} {reopen 8} {debug 0} args} {
  13. source ./include.tcl
  14. set tnum test00$reopen
  15. set args [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. if { [is_record_based $method] == 1 } {
  18. puts "Test00$reopen skipping for method $method"
  19. return
  20. }
  21. puts -nonewline "$tnum: $method filename=key filecontents=data pairs"
  22. if {$reopen == 9} {
  23. puts "(with close)"
  24. } else {
  25. puts ""
  26. }
  27. # Create the database and open the dictionary
  28. set eindex [lsearch -exact $args "-env"]
  29. #
  30. # If we are using an env, then testfile should just be the db name.
  31. # Otherwise it is the test directory and the name.
  32. if { $eindex == -1 } {
  33. set testfile $testdir/$tnum.db
  34. set env NULL
  35. } else {
  36. set testfile $tnum.db
  37. incr eindex
  38. set env [lindex $args $eindex]
  39. }
  40. set t1 $testdir/t1
  41. set t2 $testdir/t2
  42. set t3 $testdir/t3
  43. set t4 $testdir/t4
  44. cleanup $testdir $env
  45. set db [eval {berkdb_open -create -truncate -mode 0644} 
  46.     $args {$omethod $testfile}]
  47. error_check_good dbopen [is_valid_db $db] TRUE
  48. set pflags ""
  49. set gflags ""
  50. set txn ""
  51. # Here is the loop where we put and get each key/data pair
  52. set file_list [glob ../*/*.c ./*.o ./*.lo ./*.exe]
  53. set count 0
  54. puts "tTest00$reopen.a: Initial put/get loop"
  55. foreach f $file_list {
  56. set names($count) $f
  57. set key $f
  58. put_file $db $txn $pflags $f
  59. get_file $db $txn $gflags $f $t4
  60. error_check_good Test00$reopen:diff($f,$t4) 
  61.     [filecmp $f $t4] 0
  62. incr count
  63. }
  64. if {$reopen == 9} {
  65. error_check_good db_close [$db close] 0
  66. set db [eval {berkdb_open} $args $testfile]
  67. error_check_good dbopen [is_valid_db $db] TRUE
  68. }
  69. # Now we will get step through keys again (by increments) and
  70. # delete all the entries, then re-insert them.
  71. puts "tTest00$reopen.b: Delete re-add loop"
  72. foreach i "1 2 4 8 16" {
  73. for {set ndx 0} {$ndx < $count} { incr ndx $i} {
  74. set r [eval {$db del} $txn {$names($ndx)}]
  75. error_check_good db_del:$names($ndx) $r 0
  76. }
  77. for {set ndx 0} {$ndx < $count} { incr ndx $i} {
  78. put_file $db $txn $pflags $names($ndx)
  79. }
  80. }
  81. if {$reopen == 9} {
  82. error_check_good db_close [$db close] 0
  83. set db [eval {berkdb_open} $args $testfile]
  84. error_check_good dbopen [is_valid_db $db] TRUE
  85. }
  86. # Now, reopen the file and make sure the key/data pairs look right.
  87. puts "tTest00$reopen.c: Dump contents forward"
  88. dump_bin_file $db $txn $t1 test008.check
  89. set oid [open $t2.tmp w]
  90. foreach f $file_list {
  91. puts $oid $f
  92. }
  93. close $oid
  94. filesort $t2.tmp $t2
  95. fileremove $t2.tmp
  96. filesort $t1 $t3
  97. error_check_good Test00$reopen:diff($t3,$t2) 
  98.     [filecmp $t3 $t2] 0
  99. # Now, reopen the file and run the last test again in reverse direction.
  100. puts "tTest00$reopen.d: Dump contents backward"
  101. dump_bin_file_direction $db $txn $t1 test008.check "-last" "-prev"
  102. filesort $t1 $t3
  103. error_check_good Test00$reopen:diff($t3,$t2) 
  104.     [filecmp $t3 $t2] 0
  105. error_check_good close:$db [$db close] 0
  106. }
  107. proc test008.check { binfile tmpfile } {
  108. global tnum
  109. source ./include.tcl
  110. error_check_good diff($binfile,$tmpfile) 
  111.     [filecmp $binfile $tmpfile] 0
  112. }