1 start_server
{tags
{"hash"}} {
2 test
{HSET
/HLEN
- Small hash creation
} {
4 for {set i
0} {$i < 8} {incr i
} {
5 set key
[randstring
0 8 alpha
]
6 set val
[randstring
0 8 alpha
]
7 if {[info exists smallhash
($key)]} {
11 r hset smallhash
$key $val
12 set smallhash
($key) $val
14 list [r hlen smallhash
]
17 test
{Is the small hash encoded with a zipmap?
} {
18 assert_encoding zipmap smallhash
21 test
{HSET
/HLEN
- Big hash creation
} {
23 for {set i
0} {$i < 1024} {incr i
} {
24 set key
[randstring
0 8 alpha
]
25 set val
[randstring
0 8 alpha
]
26 if {[info exists bighash
($key)]} {
30 r hset bighash
$key $val
31 set bighash
($key) $val
36 test
{Is the big hash encoded with a zipmap?
} {
37 assert_encoding hashtable bighash
40 test
{HGET against the small hash
} {
42 foreach k
[array names smallhash
*] {
43 if {$smallhash($k) ne
[r hget smallhash
$k]} {
44 set err
"$smallhash($k) != [r hget smallhash $k]"
51 test
{HGET against the big hash
} {
53 foreach k
[array names bighash
*] {
54 if {$bighash($k) ne
[r hget bighash
$k]} {
55 set err
"$bighash($k) != [r hget bighash $k]"
62 test
{HGET against non existing key
} {
64 lappend rv
[r hget smallhash __123123123__
]
65 lappend rv
[r hget bighash __123123123__
]
69 test
{HSET in
update and insert mode
} {
71 set k
[lindex [array names smallhash
*] 0]
72 lappend rv
[r hset smallhash
$k newval1
]
73 set smallhash
($k) newval1
74 lappend rv
[r hget smallhash
$k]
75 lappend rv
[r hset smallhash __foobar123__ newval
]
76 set k
[lindex [array names bighash
*] 0]
77 lappend rv
[r hset bighash
$k newval2
]
78 set bighash
($k) newval2
79 lappend rv
[r hget bighash
$k]
80 lappend rv
[r hset bighash __foobar123__ newval
]
81 lappend rv
[r hdel smallhash __foobar123__
]
82 lappend rv
[r hdel bighash __foobar123__
]
84 } {0 newval1
1 0 newval2
1 1 1}
86 test
{HSETNX target key missing
- small hash
} {
87 r hsetnx smallhash __123123123__ foo
88 r hget smallhash __123123123__
91 test
{HSETNX target key exists
- small hash
} {
92 r hsetnx smallhash __123123123__ bar
93 set result
[r hget smallhash __123123123__
]
94 r hdel smallhash __123123123__
98 test
{HSETNX target key missing
- big hash
} {
99 r hsetnx bighash __123123123__ foo
100 r hget bighash __123123123__
103 test
{HSETNX target key exists
- big hash
} {
104 r hsetnx bighash __123123123__ bar
105 set result
[r hget bighash __123123123__
]
106 r hdel bighash __123123123__
110 test
{HMSET wrong number of args
} {
111 catch {r hmset smallhash key1 val1 key2
} err
115 test
{HMSET
- small hash
} {
117 foreach {k v
} [array get smallhash
] {
118 set newval
[randstring
0 8 alpha
]
119 set smallhash
($k) $newval
120 lappend args
$k $newval
122 r hmset smallhash
{*}$args
125 test
{HMSET
- big hash
} {
127 foreach {k v
} [array get bighash
] {
128 set newval
[randstring
0 8 alpha
]
129 set bighash
($k) $newval
130 lappend args
$k $newval
132 r hmset bighash
{*}$args
135 test
{HMGET against non existing key and fields
} {
137 lappend rv
[r hmget doesntexist __123123123__ __456456456__
]
138 lappend rv
[r hmget smallhash __123123123__ __456456456__
]
139 lappend rv
[r hmget bighash __123123123__ __456456456__
]
141 } {{{} {}} {{} {}} {{} {}}}
143 test
{HMGET against wrong type
} {
144 r
set wrongtype somevalue
145 assert_error
"*wrong*" {r hmget wrongtype field1 field2
}
148 test
{HMGET
- small hash
} {
151 foreach {k v
} [array get smallhash
] {
156 set result
[r hmget smallhash
{*}$keys]
157 if {$vals ne
$result} {
158 set err
"$vals != $result"
164 test
{HMGET
- big hash
} {
167 foreach {k v
} [array get bighash
] {
172 set result
[r hmget bighash
{*}$keys]
173 if {$vals ne
$result} {
174 set err
"$vals != $result"
180 test
{HKEYS
- small hash
} {
181 lsort [r hkeys smallhash
]
182 } [lsort [array names smallhash
*]]
184 test
{HKEYS
- big hash
} {
185 lsort [r hkeys bighash
]
186 } [lsort [array names bighash
*]]
188 test
{HVALS
- small hash
} {
190 foreach {k v
} [array get smallhash
] {
194 } [lsort [r hvals smallhash
]]
196 test
{HVALS
- big hash
} {
198 foreach {k v
} [array get bighash
] {
202 } [lsort [r hvals bighash
]]
204 test
{HGETALL
- small hash
} {
205 lsort [r hgetall smallhash
]
206 } [lsort [array get smallhash
]]
208 test
{HGETALL
- big hash
} {
209 lsort [r hgetall bighash
]
210 } [lsort [array get bighash
]]
212 test
{HDEL and
return value
} {
214 lappend rv
[r hdel smallhash nokey
]
215 lappend rv
[r hdel bighash nokey
]
216 set k
[lindex [array names smallhash
*] 0]
217 lappend rv
[r hdel smallhash
$k]
218 lappend rv
[r hdel smallhash
$k]
219 lappend rv
[r hget smallhash
$k]
221 set k
[lindex [array names bighash
*] 0]
222 lappend rv
[r hdel bighash
$k]
223 lappend rv
[r hdel bighash
$k]
224 lappend rv
[r hget bighash
$k]
227 } {0 0 1 0 {} 1 0 {}}
229 test
{HDEL
- more than a single value
} {
232 r hmset myhash a
1 b
2 c
3
233 assert_equal
0 [r hdel myhash x y
]
234 assert_equal
2 [r hdel myhash a c f
]
238 test
{HDEL
- hash becomes empty before deleting all specified fields
} {
240 r hmset myhash a
1 b
2 c
3
241 assert_equal
3 [r hdel myhash a b c d e
]
242 assert_equal
0 [r exists myhash
]
247 set k
[lindex [array names smallhash
*] 0]
248 lappend rv
[r hexists smallhash
$k]
249 lappend rv
[r hexists smallhash nokey
]
250 set k
[lindex [array names bighash
*] 0]
251 lappend rv
[r hexists bighash
$k]
252 lappend rv
[r hexists bighash nokey
]
255 test
{Is a zipmap encoded Hash promoted on big payload?
} {
256 r hset smallhash foo
[string repeat a
1024]
257 r debug object smallhash
260 test
{HINCRBY against non existing database key
} {
262 list [r hincrby htest foo
2]
265 test
{HINCRBY against non existing hash key
} {
269 lappend rv
[r hincrby smallhash tmp
2]
270 lappend rv
[r hget smallhash tmp
]
271 lappend rv
[r hincrby bighash tmp
2]
272 lappend rv
[r hget bighash tmp
]
275 test
{HINCRBY against hash key created by hincrby itself
} {
277 lappend rv
[r hincrby smallhash tmp
3]
278 lappend rv
[r hget smallhash tmp
]
279 lappend rv
[r hincrby bighash tmp
3]
280 lappend rv
[r hget bighash tmp
]
283 test
{HINCRBY against hash key originally
set with HSET
} {
284 r hset smallhash tmp
100
285 r hset bighash tmp
100
286 list [r hincrby smallhash tmp
2] [r hincrby bighash tmp
2]
289 test
{HINCRBY over
32bit value
} {
290 r hset smallhash tmp
17179869184
291 r hset bighash tmp
17179869184
292 list [r hincrby smallhash tmp
1] [r hincrby bighash tmp
1]
293 } {17179869185 17179869185}
295 test
{HINCRBY over
32bit value with over
32bit increment
} {
296 r hset smallhash tmp
17179869184
297 r hset bighash tmp
17179869184
298 list [r hincrby smallhash tmp
17179869184] [r hincrby bighash tmp
17179869184]
299 } {34359738368 34359738368}
301 test
{HINCRBY fails against hash value with spaces
} {
302 r hset smallhash str
" 11 "
303 r hset bighash str
" 11 "
304 catch {r hincrby smallhash str
1} smallerr
305 catch {r hincrby smallhash str
1} bigerr
307 lappend rv
[string match
"ERR*not an integer*" $smallerr]
308 lappend rv
[string match
"ERR*not an integer*" $bigerr]
311 test
{Hash zipmap regression test
for large keys
} {
312 r hset hash kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk a
313 r hset hash kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk b
314 r hget hash kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk