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

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: test066.tcl,v 11.7 2000/08/25 14:21:58 sue Exp $
  7. #
  8. # DB Test 66: Make sure a cursor put to DB_CURRENT acts as an overwrite in
  9. # a database with duplicates
  10. proc test066 { method args } {
  11. set omethod [convert_method $method]
  12. set args [convert_args $method $args]
  13. set tnum 66
  14. if { [is_record_based $method] || [is_rbtree $method] } {
  15.     puts "Test0$tnum: Skipping for method $method."
  16.     return
  17. }
  18. puts "Test0$tnum: Test of cursor put to DB_CURRENT with duplicates."
  19. source ./include.tcl
  20. set eindex [lsearch -exact $args "-env"]
  21. #
  22. # If we are using an env, then testfile should just be the db name.
  23. # Otherwise it is the test directory and the name.
  24. if { $eindex == -1 } {
  25. set testfile $testdir/test066.db
  26. set env NULL
  27. } else {
  28. set testfile test066.db
  29. incr eindex
  30. set env [lindex $args $eindex]
  31. }
  32. cleanup $testdir $env
  33. set key "test"
  34. set data "olddata"
  35. set db [eval {berkdb_open -create -mode 0644 -dup} $omethod $args 
  36.     $testfile]
  37. error_check_good db_open [is_valid_db $db] TRUE
  38. set ret [eval {$db put} $key [chop_data $method $data]]
  39. error_check_good db_put $ret 0
  40. set dbc [$db cursor]
  41. error_check_good db_cursor [is_valid_cursor $dbc $db] TRUE
  42. set ret [$dbc get -first]
  43. error_check_good db_get $ret [list [list $key [pad_data $method $data]]]
  44. set newdata "newdata"
  45. set ret [$dbc put -current [chop_data $method $newdata]]
  46. error_check_good dbc_put $ret 0
  47. # There should be only one (key,data) pair in the database, and this
  48. # is it.
  49. set ret [$dbc get -first]
  50. error_check_good db_get_first $ret 
  51.     [list [list $key [pad_data $method $newdata]]]
  52. # and this one should come up empty.
  53. set ret [$dbc get -next]
  54. error_check_good db_get_next $ret ""
  55. error_check_good dbc_close [$dbc close] 0
  56. error_check_good db_close [$db close] 0
  57. puts "tTest0$tnum: Test completed successfully."
  58. }