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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996, 1997, 1998, 1999, 2000
# Sleepycat Software. All rights reserved.
#
# $Id: test059.tcl,v 11.12 2000/08/25 14:21:57 sue Exp $
#
# Test059:
# Make sure that we handle retrieves of zero-length data items correctly.
# The following ops, should allow a partial data retrieve of 0-length.
# db_get
# db_cget FIRST, NEXT, LAST, PREV, CURRENT, SET, SET_RANGE
#
proc test059 { method args } {
source ./include.tcl
set args [convert_args $method $args]
set omethod [convert_method $method]
puts "Test059: $method 0-length partial data retrieval"
# Create the database and open the dictionary
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/test059.db
set env NULL
} else {
set testfile test059.db
incr eindex
set env [lindex $args $eindex]
}
cleanup $testdir $env
set pflags ""
set gflags ""
set txn ""
set count 0
if { [is_record_based $method] == 1 } {
append gflags " -recno"
}
puts "\tTest059.a: Populate a database"
set oflags "-create -truncate -mode 0644 $omethod $args $testfile"
set db [eval {berkdb_open} $oflags]
error_check_good db_create [is_substr $db db] 1
# Put ten keys in the database
for { set key 1 } { $key <= 10 } {incr key} {
set r [eval {$db put} $txn $pflags {$key datum$key}]
error_check_good put $r 0
}
# Retrieve keys sequentially so we can figure out their order
set i 1
set curs [$db cursor]
error_check_good db_curs [is_substr $curs $db] 1
for {set d [$curs get -first] } { [llength $d] != 0 } {
set d [$curs get -next] } {
set key_set($i) [lindex [lindex $d 0] 0]
incr i
}
puts "\tTest059.a: db get with 0 partial length retrieve"
# Now set the cursor on the middle one.
set ret [eval {$db get -partial {0 0}} $gflags {$key_set(5)}]
error_check_bad db_get_0 [llength $ret] 0
puts "\tTest059.a: db cget FIRST with 0 partial length retrieve"
set ret [$curs get -first -partial {0 0}]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_first $key $key_set(1)
error_check_good db_cget_first [string length $data] 0
puts "\tTest059.b: db cget NEXT with 0 partial length retrieve"
set ret [$curs get -next -partial {0 0}]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_next $key $key_set(2)
error_check_good db_cget_next [string length $data] 0
puts "\tTest059.c: db cget LAST with 0 partial length retrieve"
set ret [$curs get -last -partial {0 0}]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_last $key $key_set(10)
error_check_good db_cget_last [string length $data] 0
puts "\tTest059.d: db cget PREV with 0 partial length retrieve"
set ret [$curs get -prev -partial {0 0}]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_prev $key $key_set(9)
error_check_good db_cget_prev [string length $data] 0
puts "\tTest059.e: db cget CURRENT with 0 partial length retrieve"
set ret [$curs get -current -partial {0 0}]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_current $key $key_set(9)
error_check_good db_cget_current [string length $data] 0
puts "\tTest059.f: db cget SET with 0 partial length retrieve"
set ret [$curs get -set -partial {0 0} $key_set(7)]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_set $key $key_set(7)
error_check_good db_cget_set [string length $data] 0
if {[is_btree $method] == 1} {
puts "\tTest059.g:\
db cget SET_RANGE with 0 partial length retrieve"
set ret [$curs get -set_range -partial {0 0} $key_set(5)]
set data [lindex [lindex $ret 0] 1]
set key [lindex [lindex $ret 0] 0]
error_check_good key_check_set $key $key_set(5)
error_check_good db_cget_set [string length $data] 0
}
error_check_good curs_close [$curs close] 0
error_check_good db_close [$db close] 0
}
|