recd003.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: recd003.tcl,v 11.22 2000/12/07 19:13:46 sue Exp $
  7. #
  8. # Recovery Test 3.
  9. # Test all the duplicate log messages and recovery operations.  We make
  10. # sure that we exercise all possible recovery actions: redo, undo, undo
  11. # but no fix necessary and redo but no fix necessary.
  12. proc recd003 { method {select 0} args } {
  13. source ./include.tcl
  14. global rand_init
  15. set largs [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. if { [is_record_based $method] == 1 || [is_rbtree $method] == 1 } {
  18. puts "Recd003 skipping for method $method"
  19. return
  20. }
  21. puts "Recd003: $method duplicate recovery tests"
  22. berkdb srand $rand_init
  23. env_cleanup $testdir
  24. # See comment in recd001.tcl for why there are two database files...
  25. set testfile recd003.db
  26. set testfile2 recd003-2.db
  27. set eflags "-create -txn -home $testdir"
  28. puts "tRecd003.a: creating environment"
  29. set env_cmd "berkdb env $eflags"
  30. set dbenv [eval $env_cmd]
  31. error_check_bad dbenv $dbenv NULL
  32. # Create the databases.
  33. set oflags 
  34.     "-create $largs -mode 0644 $omethod -dup -env $dbenv $testfile"
  35. set db [eval {berkdb_open} $oflags]
  36. error_check_bad db_open $db NULL
  37. error_check_good db_open [is_substr $db db] 1
  38. error_check_good db_close [$db close] 0
  39. set oflags 
  40.     "-create $largs -mode 0644 $omethod -dup -env $dbenv $testfile2"
  41. set db [eval {berkdb_open} $oflags]
  42. error_check_bad db_open $db NULL
  43. error_check_good db_open [is_substr $db db] 1
  44. error_check_good db_close [$db close] 0
  45. reset_env $dbenv
  46. # These are all the data values that we're going to need to read
  47. # through the operation table and run the recovery tests.
  48. set n 10
  49. set dupn 2000
  50. set bign 500
  51. # List of recovery tests: {CMD MSG} pairs
  52. set dlist {
  53. { {populate DB $omethod TXNID $n 1 0}
  54.     "Recd003.b: add dups"}
  55. { {DB del -txn TXNID duplicate_key}
  56.     "Recd003.c: remove dups all at once"}
  57. { {populate DB $omethod TXNID $n 1 0}
  58.     "Recd003.d: add dups (change state)"}
  59. { {unpopulate DB TXNID 0}
  60.     "Recd003.e: remove dups 1 at a time"}
  61. { {populate DB $omethod TXNID $dupn 1 0}
  62.     "Recd003.f: dup split"}
  63. { {DB del -txn TXNID duplicate_key}
  64.     "Recd003.g: remove dups (change state)"}
  65. { {populate DB $omethod TXNID $n 1 1}
  66.     "Recd003.h: add big dup"}
  67. { {DB del -txn TXNID duplicate_key}
  68.     "Recd003.i: remove big dup all at once"}
  69. { {populate DB $omethod TXNID $n 1 1}
  70.     "Recd003.j: add big dup (change state)"}
  71. { {unpopulate DB TXNID 0}
  72.     "Recd003.k: remove big dup 1 at a time"}
  73. { {populate DB $omethod TXNID $bign 1 1}
  74.     "Recd003.l: split big dup"}
  75. }
  76. foreach pair $dlist {
  77. set cmd [subst [lindex $pair 0]]
  78. set msg [lindex $pair 1]
  79. if { $select != 0 } {
  80. set tag [lindex $msg 0]
  81. set tail [expr [string length $tag] - 2]
  82. set tag [string range $tag $tail $tail]
  83. if { [lsearch $select $tag] == -1 } {
  84. continue
  85. }
  86. }
  87. op_recover abort $testdir $env_cmd $testfile $cmd $msg
  88. op_recover commit $testdir $env_cmd $testfile $cmd $msg
  89. op_recover prepare $testdir $env_cmd $testfile2 $cmd $msg
  90. op_recover prepare-abort $testdir $env_cmd $testfile2 
  91. $cmd $msg
  92. op_recover prepare-commit $testdir $env_cmd $testfile2 
  93. $cmd $msg
  94. }
  95. puts "tRecd003.m: Verify db_printlog can read logfile"
  96. set tmpfile $testdir/printlog.out
  97. set stat [catch {exec $util_path/db_printlog -h $testdir 
  98.     > $tmpfile} ret]
  99. error_check_good db_printlog $stat 0
  100. fileremove $tmpfile
  101. }