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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996-2002
# Sleepycat Software. All rights reserved.
#
# $Id: test043.tcl,v 1.1.1.1 2003/11/20 22:14:00 toshok Exp $
#
# TEST test043
# TEST Recno renumbering and implicit creation test
# TEST Test the Record number implicit creation and renumbering options.
proc test043 { method {nentries 10000} args} {
source ./include.tcl
set do_renumber [is_rrecno $method]
set args [convert_args $method $args]
set omethod [convert_method $method]
puts "Test043: $method ($args)"
if { [is_record_based $method] != 1 } {
puts "Test043 skipping for method $method"
return
}
# Create the database and open the dictionary
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/test043.db
set env NULL
} else {
set testfile test043.db
incr eindex
set env [lindex $args $eindex]
set txnenv [is_txnenv $env]
if { $txnenv == 1 } {
append args " -auto_commit "
#
# If we are using txns and running with the
# default, set the default down a bit.
#
if { $nentries == 10000 } {
set nentries 100
}
}
set testdir [get_home $env]
}
cleanup $testdir $env
# Create the database
set db [eval {berkdb_open -create -mode 0644} $args \
{$omethod $testfile}]
error_check_good dbopen [is_valid_db $db] TRUE
set pflags ""
set gflags " -recno"
set txn ""
# First test implicit creation and retrieval
set count 1
set interval 5
if { $nentries < $interval } {
set nentries [expr $interval + 1]
}
puts "\tTest043.a: insert keys at $interval record intervals"
while { $count <= $nentries } {
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 $pflags {$count [chop_data $method $count]}]
error_check_good "$db put $count" $ret 0
if { $txnenv == 1 } {
error_check_good txn [$t commit] 0
}
set last $count
incr count $interval
}
puts "\tTest043.b: get keys using DB_FIRST/DB_NEXT"
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 "$db cursor" [is_valid_cursor $dbc $db] TRUE
set check 1
for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
set rec [$dbc get -next] } {
set k [lindex [lindex $rec 0] 0]
set d [pad_data $method [lindex [lindex $rec 0] 1]]
error_check_good "$dbc get key==data" [pad_data $method $k] $d
error_check_good "$dbc get sequential" $k $check
if { $k > $nentries } {
error_check_good "$dbc get key too large" $k $nentries
}
incr check $interval
}
# Now make sure that we get DB_KEYEMPTY for non-existent keys
puts "\tTest043.c: Retrieve non-existent keys"
global errorInfo
set check 1
for { set rec [$dbc get -first] } { [llength $rec] != 0 } {
set rec [$dbc get -next] } {
set k [lindex [lindex $rec 0] 0]
set ret [eval {$db get} $txn $gflags {[expr $k + 1]}]
error_check_good "$db \
get [expr $k + 1]" $ret [list]
incr check $interval
# Make sure we don't do a retrieve past the end of file
if { $check >= $last } {
break
}
}
# Now try deleting and make sure the right thing happens.
puts "\tTest043.d: Delete tests"
set rec [$dbc get -first]
error_check_bad "$dbc get -first" [llength $rec] 0
error_check_good "$dbc get -first key" [lindex [lindex $rec 0] 0] 1
error_check_good "$dbc get -first data" \
[lindex [lindex $rec 0] 1] [pad_data $method 1]
# Delete the first item
error_check_good "$dbc del" [$dbc del] 0
# Retrieving 1 should always fail
set ret [eval {$db get} $txn $gflags {1}]
error_check_good "$db get 1" $ret [list]
# Now, retrieving other keys should work; keys will vary depending
# upon renumbering.
if { $do_renumber == 1 } {
set count [expr 0 + $interval]
set max [expr $nentries - 1]
} else {
set count [expr 1 + $interval]
set max $nentries
}
while { $count <= $max } {
set rec [eval {$db get} $txn $gflags {$count}]
if { $do_renumber == 1 } {
set data [expr $count + 1]
} else {
set data $count
}
error_check_good "$db get $count" \
[pad_data $method $data] [lindex [lindex $rec 0] 1]
incr count $interval
}
set max [expr $count - $interval]
puts "\tTest043.e: Verify LAST/PREV functionality"
set count $max
for { set rec [$dbc get -last] } { [llength $rec] != 0 } {
set rec [$dbc get -prev] } {
set k [lindex [lindex $rec 0] 0]
set d [lindex [lindex $rec 0] 1]
if { $do_renumber == 1 } {
set data [expr $k + 1]
} else {
set data $k
}
error_check_good \
"$dbc get key==data" [pad_data $method $data] $d
error_check_good "$dbc get sequential" $k $count
if { $k > $nentries } {
error_check_good "$dbc get key too large" $k $nentries
}
set count [expr $count - $interval]
if { $count < 1 } {
break
}
}
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
}
|