test012.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: test012.tcl,v 11.14 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 12 {access method}
  9. # Take the source files and dbtest executable and enter their contents as
  10. # the key with their names as data.  After all are entered, retrieve all;
  11. # compare output to original. Close file, reopen, do retrieve and re-verify.
  12. proc test012 { method args} {
  13. global names
  14. source ./include.tcl
  15. set args [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. if { [is_record_based $method] == 1 } {
  18. puts "Test012 skipping for method $method"
  19. return
  20. }
  21. puts "Test012: $method ($args) filename=data filecontents=key pairs"
  22. # Create the database and open the dictionary
  23. set eindex [lsearch -exact $args "-env"]
  24. #
  25. # If we are using an env, then testfile should just be the db name.
  26. # Otherwise it is the test directory and the name.
  27. if { $eindex == -1 } {
  28. set testfile $testdir/test012.db
  29. set env NULL
  30. } else {
  31. set testfile test012.db
  32. incr eindex
  33. set env [lindex $args $eindex]
  34. }
  35. set t1 $testdir/t1
  36. set t2 $testdir/t2
  37. set t3 $testdir/t3
  38. set t4 $testdir/t4
  39. cleanup $testdir $env
  40. set db [eval {berkdb_open 
  41.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  42. error_check_good dbopen [is_valid_db $db] TRUE
  43. set pflags ""
  44. set gflags ""
  45. set txn ""
  46. # Here is the loop where we put and get each key/data pair
  47. set file_list [glob $test_path/../[a-z]*/*.c 
  48.     $test_path/./*.lo ./*.exe]
  49. puts "tTest012.a: put/get loop"
  50. set count 0
  51. foreach f $file_list {
  52. put_file_as_key $db $txn $pflags $f
  53. set kd [get_file_as_key $db $txn $gflags $f]
  54. incr count
  55. }
  56. # Now we will get each key from the DB and compare the results
  57. # to the original.
  58. puts "tTest012.b: dump file"
  59. dump_binkey_file $db $txn $t1 test012.check
  60. error_check_good db_close [$db close] 0
  61. # Now compare the data to see if they match the .o and dbtest files
  62. set oid [open $t2.tmp w]
  63. foreach f $file_list {
  64. puts $oid $f
  65. }
  66. close $oid
  67. filesort $t2.tmp $t2
  68. fileremove $t2.tmp
  69. filesort $t1 $t3
  70. error_check_good Test012:diff($t3,$t2) 
  71.     [filecmp $t3 $t2] 0
  72. # Now, reopen the file and run the last test again.
  73. puts "tTest012.c: close, open, and dump file"
  74. open_and_dump_file $testfile $env $txn $t1 test012.check 
  75.     dump_binkey_file_direction "-first" "-next"
  76. filesort $t1 $t3
  77. error_check_good Test012:diff($t3,$t2) 
  78.     [filecmp $t3 $t2] 0
  79. # Now, reopen the file and run the last test again in reverse direction.
  80. puts "tTest012.d: close, open, and dump file in reverse direction"
  81. open_and_dump_file $testfile $env $txn $t1 test012.check
  82.     dump_binkey_file_direction "-last" "-prev"
  83. filesort $t1 $t3
  84. error_check_good Test012:diff($t3,$t2) 
  85.     [filecmp $t3 $t2] 0
  86. }
  87. # Check function for test012; key should be file name; data should be contents
  88. proc test012.check { binfile tmpfile } {
  89. source ./include.tcl
  90. error_check_good Test012:diff($binfile,$tmpfile) 
  91.     [filecmp $binfile $tmpfile] 0
  92. }