mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
105 lines
2.7 KiB
Tcl
105 lines
2.7 KiB
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 1996, 1997, 1998
|
|
# Sleepycat Software. All rights reserved.
|
|
#
|
|
# @(#)dbm.tcl 10.2 (Sleepycat) 4/10/98
|
|
#
|
|
# Historic DBM interface test.
|
|
# Use the first 1000 entries from the dictionary.
|
|
# Insert each with self as key and data; retrieve each.
|
|
# After all are entered, retrieve all; compare output to original.
|
|
# Then reopen the file, re-retrieve everything.
|
|
# Finally, delete everything.
|
|
proc dbm { { nentries 1000 } } {
|
|
puts "DBM interfaces test: $nentries"
|
|
|
|
# Get global declarations since tcl doesn't support
|
|
# any useful equivalent to #defines!
|
|
source ./include.tcl
|
|
|
|
# Create the database and open the dictionary
|
|
set testfile $testdir/dbmtest
|
|
set t1 $testdir/t1
|
|
set t2 $testdir/t2
|
|
set t3 $testdir/t3
|
|
cleanup $testdir
|
|
|
|
error_check_good dbminit [dbminit $testfile] 0
|
|
set did [open $dict]
|
|
|
|
set flags 0
|
|
set txn 0
|
|
set count 0
|
|
|
|
puts "\tDBM.a: put/get loop"
|
|
# Here is the loop where we put and get each key/data pair
|
|
while { [gets $did str] != -1 && $count < $nentries } {
|
|
set ret [store $str $str]
|
|
error_check_good dbm_store $ret 0
|
|
|
|
set d [fetch $str]
|
|
error_check_good dbm_fetch $d $str
|
|
incr count
|
|
}
|
|
close $did
|
|
|
|
# Now we will get each key from the DB and compare the results
|
|
# to the original.
|
|
puts "\tDBM.b: dump file"
|
|
set oid [open $t1 w]
|
|
for { set key [firstkey] } { $key != -1 } { set key [nextkey $key] } {
|
|
puts $oid $key
|
|
set d [fetch $key]
|
|
error_check_good dbm_refetch $d $key
|
|
}
|
|
close $oid
|
|
|
|
# Now compare the keys to see if they match the dictionary (or ints)
|
|
set q q
|
|
exec $SED $nentries$q $dict > $t2
|
|
exec $SORT $t1 > $t3
|
|
|
|
error_check_good DBM:diff($t3,$t2) \
|
|
[catch { exec $DIFF $t3 $t2 } res] 0
|
|
|
|
puts "\tDBM.c: close, open, and dump file"
|
|
|
|
# Now, reopen the file and run the last test again.
|
|
error_check_good dbminit2 [dbminit $testfile] 0
|
|
set oid [open $t1 w]
|
|
|
|
for { set key [firstkey] } { $key != -1 } { set key [nextkey $key] } {
|
|
puts $oid $key
|
|
set d [fetch $key]
|
|
error_check_good dbm_refetch $d $key
|
|
}
|
|
close $oid
|
|
|
|
# Now compare the keys to see if they match the dictionary (or ints)
|
|
exec $SORT $t1 > $t3
|
|
|
|
error_check_good DBM:diff($t2,$t3) \
|
|
[catch { exec $DIFF $t2 $t3 } res] 0
|
|
|
|
# Now, reopen the file and delete each entry
|
|
puts "\tDBM.d: sequential scan and delete"
|
|
|
|
error_check_good dbminit3 [dbminit $testfile] 0
|
|
set oid [open $t1 w]
|
|
|
|
for { set key [firstkey] } { $key != -1 } { set key [nextkey $key] } {
|
|
puts $oid $key
|
|
set ret [delete $key]
|
|
error_check_good dbm_delete $ret 0
|
|
}
|
|
close $oid
|
|
|
|
# Now compare the keys to see if they match the dictionary (or ints)
|
|
exec $SORT $t1 > $t3
|
|
|
|
error_check_good DBM:diff($t2,$t3) \
|
|
[catch { exec $DIFF $t2 $t3 } res] 0
|
|
|
|
}
|