mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 17:16:25 +00:00
69 lines
1.8 KiB
Tcl
69 lines
1.8 KiB
Tcl
|
# See the file LICENSE for redistribution information.
|
||
|
#
|
||
|
# Copyright (c) 1999, 2011 Oracle and/or its affiliates. All rights reserved.
|
||
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
# TEST test064
|
||
|
# TEST Test of DB->get_type
|
||
|
# TEST Create a database of type specified by method.
|
||
|
# TEST Make sure DB->get_type returns the right thing with both a normal
|
||
|
# TEST and DB_UNKNOWN open.
|
||
|
proc test064 { method args } {
|
||
|
source ./include.tcl
|
||
|
|
||
|
set args [convert_args $method $args]
|
||
|
set omethod [convert_method $method]
|
||
|
set tnum "064"
|
||
|
|
||
|
set txnenv 0
|
||
|
set eindex [lsearch -exact $args "-env"]
|
||
|
#
|
||
|
# If we are using an env, then testfile should just be the db name.
|
||
|
# Otherwise it is the test directory and the name.
|
||
|
if { $eindex == -1 } {
|
||
|
set testfile $testdir/test$tnum.db
|
||
|
set env NULL
|
||
|
} else {
|
||
|
set testfile test$tnum.db
|
||
|
incr eindex
|
||
|
set env [lindex $args $eindex]
|
||
|
set txnenv [is_txnenv $env]
|
||
|
if { $txnenv == 1 } {
|
||
|
append args " -auto_commit "
|
||
|
}
|
||
|
set testdir [get_home $env]
|
||
|
}
|
||
|
cleanup $testdir $env
|
||
|
|
||
|
puts "Test$tnum: $method ($args) DB->get_type test."
|
||
|
|
||
|
# Create a test database.
|
||
|
puts "\tTest$tnum.a: Creating test database of type $method."
|
||
|
set db [eval {berkdb_open -create -mode 0644} \
|
||
|
$omethod $args $testfile]
|
||
|
error_check_good db_create [is_valid_db $db] TRUE
|
||
|
|
||
|
error_check_good db_close [$db close] 0
|
||
|
|
||
|
puts "\tTest$tnum.b: get_type after method specifier."
|
||
|
|
||
|
set db [eval {berkdb_open} $omethod $args {$testfile}]
|
||
|
error_check_good db_open [is_valid_db $db] TRUE
|
||
|
|
||
|
set type [$db get_type]
|
||
|
error_check_good get_type $type [string range $omethod 1 end]
|
||
|
|
||
|
error_check_good db_close [$db close] 0
|
||
|
|
||
|
puts "\tTest$tnum.c: get_type after DB_UNKNOWN."
|
||
|
|
||
|
set db [eval {berkdb_open} $args $testfile]
|
||
|
error_check_good db_open [is_valid_db $db] TRUE
|
||
|
|
||
|
set type [$db get_type]
|
||
|
error_check_good get_type $type [string range $omethod 1 end]
|
||
|
|
||
|
error_check_good db_close [$db close] 0
|
||
|
}
|