1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2000-2002
# Sleepycat Software. All rights reserved.
#
# $Id: test077.tcl,v 1.1.1.1 2003/11/20 22:14:02 toshok Exp $
#
# TEST test077
# TEST Test of DB_GET_RECNO [#1206].
proc test077 { method { nkeys 1000 } { pagesize 512 } { tnum 77 } args } {
source ./include.tcl
global alphabet
set omethod [convert_method $method]
set args [convert_args $method $args]
puts "Test0$tnum: Test of DB_GET_RECNO."
if { [is_rbtree $method] != 1 } {
puts "\tTest0$tnum: Skipping for method $method."
return
}
set data $alphabet
set txnenv 0
set eindex [lsearch -exact $args "-env"]
if { $eindex == -1 } {
set testfile $testdir/test0$tnum.db
set env NULL
} else {
set testfile test0$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
set db [eval {berkdb_open -create -mode 0644\
-pagesize $pagesize} $omethod $args {$testfile}]
error_check_good db_open [is_valid_db $db] TRUE
puts "\tTest0$tnum.a: Populating database."
set txn ""
for { set i 1 } { $i <= $nkeys } { incr i } {
set key [format %5d $i]
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
set ret [eval {$db put} $txn {$key $data}]
error_check_good db_put($key) $ret 0
if { $txnenv == 1 } {
error_check_good txn [$t commit] 0
}
}
puts "\tTest0$tnum.b: Verifying record numbers."
if { $txnenv == 1 } {
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
}
set dbc [eval {$db cursor} $txn]
error_check_good dbc_open [is_valid_cursor $dbc $db] TRUE
set i 1
for { set dbt [$dbc get -first] } \
{ [string length $dbt] != 0 } \
{ set dbt [$dbc get -next] } {
set recno [$dbc get -get_recno]
set keynum [expr [lindex [lindex $dbt 0] 0]]
# Verify that i, the number that is the key, and recno
# are all equal.
error_check_good key($i) $keynum $i
error_check_good recno($i) $recno $i
incr i
}
error_check_good dbc_close [$dbc close] 0
if { $txnenv == 1 } {
error_check_good txn [$t commit] 0
}
error_check_good db_close [$db close] 0
}
|