test064.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: test064.tcl,v 11.8 2000/08/25 14:21:58 sue Exp $
  7. #
  8. # DB Test 64: Test of DB->get_type
  9. # Create a database of type specified by method.
  10. # Make sure DB->get_type returns the right thing with both a
  11. # normal and DB_UNKNOWN open.
  12. proc test064 { method args } {
  13. source ./include.tcl
  14. set args [convert_args $method $args]
  15. set omethod [convert_method $method]
  16. set tnum 64
  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. puts "Test0$tnum: $method ($args) DB->get_type test."
  31. # Create a test database.
  32. puts "tTest0$tnum.a: Creating test database of type $method."
  33. set db [eval {berkdb_open -create -truncate -mode 0644} 
  34.     $omethod $args $testfile]
  35. error_check_good db_create [is_valid_db $db] TRUE
  36. error_check_good db_close [$db close] 0
  37. puts "tTest0$tnum.b: get_type after method specifier."
  38. set db [eval {berkdb_open} $omethod $args {$testfile}]
  39. error_check_good db_open [is_valid_db $db] TRUE
  40. set type [$db get_type]
  41. error_check_good get_type $type [string range $omethod 1 end]
  42. error_check_good db_close [$db close] 0
  43. puts "tTest0$tnum.c: get_type after DB_UNKNOWN."
  44. set db [eval {berkdb_open} $args $testfile]
  45. error_check_good db_open [is_valid_db $db] TRUE
  46. set type [$db get_type]
  47. error_check_good get_type $type [string range $omethod 1 end]
  48. error_check_good db_close [$db close] 0
  49. }