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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test063.tcl,v 11.11 2000/08/25 14:21:58 sue Exp $
  7. #
  8. # DB Test 63:  Test that the DB_RDONLY flag is respected.
  9. # Attempt to both DB->put and DBC->c_put into a database
  10. # that has been opened DB_RDONLY, and check for failure.
  11. proc test063 { method args } {
  12. global errorCode
  13. source ./include.tcl
  14. set args [convert_args $method $args]
  15. set omethod [convert_method $method]
  16. set tnum 63
  17. set eindex [lsearch -exact $args "-env"]
  18. #
  19. # If we are using an env, then testfile should just be the db name.
  20. # Otherwise it is the test directory and the name.
  21. if { $eindex == -1 } {
  22. set testfile $testdir/test0$tnum.db
  23. set env NULL
  24. } else {
  25. set testfile test0$tnum.db
  26. incr eindex
  27. set env [lindex $args $eindex]
  28. }
  29. cleanup $testdir $env
  30. set key "key"
  31. set data "data"
  32. set key2 "another_key"
  33. set data2 "more_data"
  34. set gflags ""
  35. if { [is_record_based $method] == 1 } {
  36.     set key "1"
  37.     set key2 "2"
  38.     append gflags " -recno"
  39. }
  40. puts "Test0$tnum: $method ($args) DB_RDONLY test."
  41. # Create a test database.
  42. puts "tTest0$tnum.a: Creating test database."
  43. set db [eval {berkdb_open_noerr -create -truncate -mode 0644} 
  44.     $omethod $args $testfile]
  45. error_check_good db_create [is_valid_db $db] TRUE
  46. # Put and get an item so it's nonempty.
  47. set ret [eval {$db put} $key [chop_data $method $data]]
  48. error_check_good initial_put $ret 0
  49. set dbt [eval {$db get} $gflags $key]
  50. error_check_good initial_get $dbt 
  51.     [list [list $key [pad_data $method $data]]]
  52. error_check_good db_close [$db close] 0
  53. if { $eindex == -1 } {
  54. # Confirm that database is writable.  If we are
  55. # using an env (that may be remote on a server)
  56. # we cannot do this check.
  57. error_check_good writable [file writable $testfile] 1
  58. }
  59. puts "tTest0$tnum.b: Re-opening DB_RDONLY and attempting to put."
  60. # Now open it read-only and make sure we can get but not put.
  61. set db [eval {berkdb_open_noerr -rdonly} $args {$testfile}]
  62. error_check_good db_open [is_valid_db $db] TRUE
  63. set dbt [eval {$db get} $gflags $key]
  64. error_check_good db_get $dbt 
  65.     [list [list $key [pad_data $method $data]]]
  66. set ret [catch {eval {$db put} $key2 [chop_data $method $data]} res]
  67. error_check_good put_failed $ret 1
  68. error_check_good db_put_rdonly [is_substr $errorCode "EACCES"] 1
  69. set errorCode "NONE"
  70. puts "tTest0$tnum.c: Attempting cursor put."
  71. set dbc [$db cursor]
  72. error_check_good cursor_create [is_valid_cursor $dbc $db] TRUE
  73. error_check_good cursor_set [$dbc get -first] $dbt
  74. set ret [catch {eval {$dbc put} -current $data} res]
  75. error_check_good c_put_failed $ret 1
  76. error_check_good dbc_put_rdonly [is_substr $errorCode "EACCES"] 1
  77. set dbt [eval {$db get} $gflags $key2]
  78. error_check_good db_get_key2 $dbt ""
  79. puts "tTest0$tnum.d: Attempting ordinary delete."
  80. set errorCode "NONE"
  81. set ret [catch {eval {$db del} $key} 1]
  82. error_check_good del_failed $ret 1
  83. error_check_good db_del_rdonly [is_substr $errorCode "EACCES"] 1
  84. set dbt [eval {$db get} $gflags $key]
  85. error_check_good db_get_key $dbt 
  86.     [list [list $key [pad_data $method $data]]]
  87. puts "tTest0$tnum.e: Attempting cursor delete."
  88. # Just set the cursor to the beginning;  we don't care what's there...
  89. # yet.
  90. set dbt2 [$dbc get -first]
  91. error_check_good db_get_first_key $dbt2 $dbt
  92. set errorCode "NONE"
  93. set ret [catch {$dbc del} res]
  94. error_check_good c_del_failed $ret 1
  95. error_check_good dbc_del_rdonly [is_substr $errorCode "EACCES"] 1
  96. set dbt2 [$dbc get -current]
  97. error_check_good db_get_key $dbt2 $dbt
  98. puts "tTest0$tnum.f: Close, reopen db;  verify unchanged."
  99. error_check_good dbc_close [$dbc close] 0
  100. error_check_good db_close [$db close] 0
  101. set db [eval {berkdb_open} $omethod $args $testfile]
  102. error_check_good db_reopen [is_valid_db $db] TRUE
  103. set dbc [$db cursor]
  104. error_check_good cursor_create [is_valid_cursor $dbc $db] TRUE
  105. error_check_good first_there [$dbc get -first] 
  106.     [list [list $key [pad_data $method $data]]]
  107. error_check_good nomore_there [$dbc get -next] ""
  108. error_check_good dbc_close [$dbc close] 0
  109. error_check_good db_close [$db close] 0
  110. }