mirror of
https://github.com/fluencelabs/redis
synced 2025-03-18 16:40:50 +00:00
More Hash tests
This commit is contained in:
parent
164ee59564
commit
b1d9c91ca8
@ -1580,6 +1580,43 @@ proc main {server port} {
|
||||
set _ $err
|
||||
} {}
|
||||
|
||||
test {HSET return value. Update or insert?} {
|
||||
set rv {}
|
||||
set k [lindex [array names smallhash *] 0]
|
||||
lappend rv [$r hset smallhash $k newval]
|
||||
lappend rv [$r hset smallhash __foobar123__ newval]
|
||||
set k [lindex [array names bighash *] 0]
|
||||
lappend rv [$r hset bighash $k newval]
|
||||
lappend rv [$r hset bighash __foobar123__ newval]
|
||||
lappend rv [$r hdel smallhash __foobar123__]
|
||||
lappend rv [$r hdel bighash __foobar123__]
|
||||
set _ $rv
|
||||
} {0 1 0 1 1 1}
|
||||
|
||||
test {HGET against non existing key} {
|
||||
set rv {}
|
||||
lappend rv [$r hget smallhash __123123123__]
|
||||
lappend rv [$r hget bighash __123123123__]
|
||||
set _ $rv
|
||||
} {{} {}}
|
||||
|
||||
test {HKEYS - small hash} {
|
||||
lsort [$r hkeys smallhash]
|
||||
} [lsort [array names smallhash *]]
|
||||
|
||||
test {HKEYS - big hash} {
|
||||
lsort [$r hkeys bighash]
|
||||
} [lsort [array names bighash *]]
|
||||
|
||||
# TODO:
|
||||
# Propoted to hash table on big payload?
|
||||
# HVALS
|
||||
# HGETALL
|
||||
# HDEL
|
||||
# HDEL return value
|
||||
# Randomized test, small and big
|
||||
# .rdb / AOF consistency test should include hashes
|
||||
|
||||
test {EXPIRE - don't set timeouts multiple times} {
|
||||
$r set x foobar
|
||||
set v1 [$r expire x 5]
|
||||
|
Loading…
x
Reference in New Issue
Block a user