1 start_server
{tags
{"zset"}} {
2 proc create_zset
{key items
} {
4 foreach {score
entry} $items {
5 r zadd
$key $score $entry
9 test
{ZSET basic ZADD and score
update} {
13 set aux1
[r zrange ztmp
0 -1]
15 set aux2
[r zrange ztmp
0 -1]
23 test
{ZCARD non existing key
} {
27 test
"ZRANGE basics" {
34 assert_equal
{a b c d
} [r zrange ztmp
0 -1]
35 assert_equal
{a b c
} [r zrange ztmp
0 -2]
36 assert_equal
{b c d
} [r zrange ztmp
1 -1]
37 assert_equal
{b c
} [r zrange ztmp
1 -2]
38 assert_equal
{c d
} [r zrange ztmp
-2 -1]
39 assert_equal
{c
} [r zrange ztmp
-2 -2]
41 # out of range start index
42 assert_equal
{a b c
} [r zrange ztmp
-5 2]
43 assert_equal
{a b
} [r zrange ztmp
-5 1]
44 assert_equal
{} [r zrange ztmp
5 -1]
45 assert_equal
{} [r zrange ztmp
5 -2]
47 # out of range end index
48 assert_equal
{a b c d
} [r zrange ztmp
0 5]
49 assert_equal
{b c d
} [r zrange ztmp
1 5]
50 assert_equal
{} [r zrange ztmp
0 -5]
51 assert_equal
{} [r zrange ztmp
1 -5]
54 assert_equal
{a
1 b
2 c
3 d
4} [r zrange ztmp
0 -1 withscores
]
57 test
"ZREVRANGE basics" {
64 assert_equal
{d c b a
} [r zrevrange ztmp
0 -1]
65 assert_equal
{d c b
} [r zrevrange ztmp
0 -2]
66 assert_equal
{c b a
} [r zrevrange ztmp
1 -1]
67 assert_equal
{c b
} [r zrevrange ztmp
1 -2]
68 assert_equal
{b a
} [r zrevrange ztmp
-2 -1]
69 assert_equal
{b
} [r zrevrange ztmp
-2 -2]
71 # out of range start index
72 assert_equal
{d c b
} [r zrevrange ztmp
-5 2]
73 assert_equal
{d c
} [r zrevrange ztmp
-5 1]
74 assert_equal
{} [r zrevrange ztmp
5 -1]
75 assert_equal
{} [r zrevrange ztmp
5 -2]
77 # out of range end index
78 assert_equal
{d c b a
} [r zrevrange ztmp
0 5]
79 assert_equal
{c b a
} [r zrevrange ztmp
1 5]
80 assert_equal
{} [r zrevrange ztmp
0 -5]
81 assert_equal
{} [r zrevrange ztmp
1 -5]
84 assert_equal
{d
4 c
3 b
2 a
1} [r zrevrange ztmp
0 -1 withscores
]
91 list [r zrank zranktmp x
] [r zrank zranktmp y
] [r zrank zranktmp z
]
94 test
{ZREVRANK basics
} {
95 list [r zrevrank zranktmp x
] [r zrevrank zranktmp y
] [r zrevrank zranktmp z
]
98 test
{ZRANK
- after deletion
} {
100 list [r zrank zranktmp x
] [r zrank zranktmp z
]
106 for {set i
0} {$i < 1000} {incr i
} {
107 set score
[expr rand
()]
109 r zadd zscoretest
$score $i
111 for {set i
0} {$i < 1000} {incr i
} {
112 if {[r zscore zscoretest
$i] != [lindex $aux $i]} {
113 set err
"Expected score was [lindex $aux $i] but got [r zscore zscoretest $i] for element $i"
120 test
{ZSCORE
after a DEBUG RELOAD
} {
124 for {set i
0} {$i < 1000} {incr i
} {
125 set score
[expr rand
()]
127 r zadd zscoretest
$score $i
130 for {set i
0} {$i < 1000} {incr i
} {
131 if {[r zscore zscoretest
$i] != [lindex $aux $i]} {
132 set err
"Expected score was [lindex $aux $i] but got [r zscore zscoretest $i] for element $i"
139 test
{ZSETs stress tester
- sorting is working well?
} {
141 for {set test
0} {$test < 2} {incr test
} {
142 unset -nocomplain auxarray
143 array set auxarray
{}
146 for {set i
0} {$i < 1000} {incr i
} {
148 set score
[expr rand
()]
150 set score
[expr int
(rand
()*10)]
152 set auxarray
($i) $score
153 r zadd myzset
$score $i
155 if {[expr rand
()] < .2} {
156 set j
[expr int
(rand
()*1000)]
158 set score
[expr rand
()]
160 set score
[expr int
(rand
()*10)]
162 set auxarray
($j) $score
163 r zadd myzset
$score $j
166 foreach {item score
} [array get auxarray
] {
167 lappend auxlist
[list $score $item]
169 set sorted
[lsort -command zlistAlikeSort
$auxlist]
172 lappend auxlist
[lindex $x 1]
174 set fromredis
[r zrange myzset
0 -1]
176 for {set i
0} {$i < [llength $fromredis]} {incr i
} {
177 if {[lindex $fromredis $i] != [lindex $auxlist $i]} {
185 test
{ZINCRBY
- can create a new sorted
set} {
188 list [r zrange zset
0 -1] [r zscore zset foo
]
191 test
{ZINCRBY
- increment and decrement
} {
194 set v1
[r zrange zset
0 -1]
195 r zincrby zset
10 bar
196 r zincrby zset
-5 foo
197 r zincrby zset
-5 bar
198 set v2
[r zrange zset
0 -1]
199 list $v1 $v2 [r zscore zset foo
] [r zscore zset bar
]
200 } {{bar foo
} {foo bar
} -2 6}
202 proc create_default_zset
{} {
203 create_zset zset
{-inf a
1 b
2 c
3 d
4 e
5 f
+inf g
}
206 test
"ZRANGEBYSCORE/ZREVRANGEBYSCORE/ZCOUNT basics" {
210 assert_equal
{a b c
} [r zrangebyscore zset
-inf 2]
211 assert_equal
{b c d
} [r zrangebyscore zset
0 3]
212 assert_equal
{d e f
} [r zrangebyscore zset
3 6]
213 assert_equal
{e f g
} [r zrangebyscore zset
4 +inf
]
214 assert_equal
{c b a
} [r zrevrangebyscore zset
2 -inf]
215 assert_equal
{d c b
} [r zrevrangebyscore zset
3 0]
216 assert_equal
{f e d
} [r zrevrangebyscore zset
6 3]
217 assert_equal
{g f e
} [r zrevrangebyscore zset
+inf
4]
218 assert_equal
3 [r zcount zset
0 3]
221 assert_equal
{b
} [r zrangebyscore zset
(-inf (2]
222 assert_equal
{b c
} [r zrangebyscore zset
(0 (3]
223 assert_equal
{e f
} [r zrangebyscore zset
(3 (6]
224 assert_equal
{f
} [r zrangebyscore zset
(4 (+inf
]
225 assert_equal
{b
} [r zrevrangebyscore zset
(2 (-inf]
226 assert_equal
{c b
} [r zrevrangebyscore zset
(3 (0]
227 assert_equal
{f e
} [r zrevrangebyscore zset
(6 (3]
228 assert_equal
{f
} [r zrevrangebyscore zset
(+inf
(4]
229 assert_equal
2 [r zcount zset
(0 (3]
232 test
"ZRANGEBYSCORE with WITHSCORES" {
234 assert_equal
{b
1 c
2 d
3} [r zrangebyscore zset
0 3 withscores
]
235 assert_equal
{d
3 c
2 b
1} [r zrevrangebyscore zset
3 0 withscores
]
238 test
"ZRANGEBYSCORE with LIMIT" {
240 assert_equal
{b c
} [r zrangebyscore zset
0 10 LIMIT
0 2]
241 assert_equal
{d e f
} [r zrangebyscore zset
0 10 LIMIT
2 3]
242 assert_equal
{d e f
} [r zrangebyscore zset
0 10 LIMIT
2 10]
243 assert_equal
{} [r zrangebyscore zset
0 10 LIMIT
20 10]
244 assert_equal
{f e
} [r zrevrangebyscore zset
10 0 LIMIT
0 2]
245 assert_equal
{d c b
} [r zrevrangebyscore zset
10 0 LIMIT
2 3]
246 assert_equal
{d c b
} [r zrevrangebyscore zset
10 0 LIMIT
2 10]
247 assert_equal
{} [r zrevrangebyscore zset
10 0 LIMIT
20 10]
250 test
"ZRANGEBYSCORE with LIMIT and WITHSCORES" {
252 assert_equal
{e
4 f
5} [r zrangebyscore zset
2 5 LIMIT
2 3 WITHSCORES
]
253 assert_equal
{d
3 c
2} [r zrevrangebyscore zset
5 2 LIMIT
2 3 WITHSCORES
]
257 test
{ZRANGEBYSCORE fuzzy test
, 100 ranges in
1000 elements sorted
set} {
260 for {set i
0} {$i < 1000} {incr i
} {
261 r zadd zset
[expr rand
()] $i
263 for {set i
0} {$i < 100} {incr i
} {
264 set min
[expr rand
()]
265 set max
[expr rand
()]
271 set low
[r zrangebyscore zset
-inf $min]
272 set ok
[r zrangebyscore zset
$min $max]
273 set high
[r zrangebyscore zset
$max +inf
]
274 set lowx
[r zrangebyscore zset
-inf ($min]
275 set okx
[r zrangebyscore zset
($min ($max]
276 set highx
[r zrangebyscore zset
($max +inf
]
278 if {[r zcount zset
-inf $min] != [llength $low]} {
279 append err
"Error, len does not match zcount\n"
281 if {[r zcount zset
$min $max] != [llength $ok]} {
282 append err
"Error, len does not match zcount\n"
284 if {[r zcount zset
$max +inf
] != [llength $high]} {
285 append err
"Error, len does not match zcount\n"
287 if {[r zcount zset
-inf ($min] != [llength $lowx]} {
288 append err
"Error, len does not match zcount\n"
290 if {[r zcount zset
($min ($max] != [llength $okx]} {
291 append err
"Error, len does not match zcount\n"
293 if {[r zcount zset
($max +inf
] != [llength $highx]} {
294 append err
"Error, len does not match zcount\n"
298 set score
[r zscore zset
$x]
300 append err
"Error, score for $x is $score > $min\n"
304 set score
[r zscore zset
$x]
305 if {$score >= $min} {
306 append err
"Error, score for $x is $score >= $min\n"
310 set score
[r zscore zset
$x]
311 if {$score < $min ||
$score > $max} {
312 append err
"Error, score for $x is $score outside $min-$max range\n"
316 set score
[r zscore zset
$x]
317 if {$score <= $min ||
$score >= $max} {
318 append err
"Error, score for $x is $score outside $min-$max open range\n"
322 set score
[r zscore zset
$x]
324 append err
"Error, score for $x is $score < $max\n"
328 set score
[r zscore zset
$x]
329 if {$score <= $max} {
330 append err
"Error, score for $x is $score <= $max\n"
338 test
{ZREMRANGEBYSCORE basics
} {
345 list [r zremrangebyscore zset
2 4] [r zrange zset
0 -1]
348 test
{ZREMRANGEBYSCORE from
-inf to
+inf
} {
355 list [r zremrangebyscore zset
-inf +inf
] [r zrange zset
0 -1]
358 test
"ZREMRANGEBYRANK basics" {
359 proc remrangebyrank
{min max
} {
360 create_zset zset
{1 a
2 b
3 c
4 d
5 e
}
361 r zremrangebyrank zset
$min $max
365 assert_equal
3 [remrangebyrank
1 3]
366 assert_equal
{a e
} [r zrange zset
0 -1]
369 assert_equal
1 [remrangebyrank
-10 0]
370 assert_equal
{b c d e
} [r zrange zset
0 -1]
373 assert_equal
0 [remrangebyrank
10 -1]
374 assert_equal
{a b c d e
} [r zrange zset
0 -1]
377 assert_equal
0 [remrangebyrank
0 -10]
378 assert_equal
{a b c d e
} [r zrange zset
0 -1]
381 assert_equal
5 [remrangebyrank
0 10]
382 assert_equal
{} [r zrange zset
0 -1]
385 test
{ZUNIONSTORE against non-existing key doesn't
set destination
} {
387 list [r zunionstore dst_key
1 zseta
] [r exists dst_key
]
390 test
{ZUNIONSTORE basics
} {
391 r del zseta zsetb zsetc
398 list [r zunionstore zsetc
2 zseta zsetb
] [r zrange zsetc
0 -1 withscores
]
399 } {4 {a
1 b
3 d
3 c
5}}
401 test
{ZUNIONSTORE with weights
} {
402 list [r zunionstore zsetc
2 zseta zsetb weights
2 3] [r zrange zsetc
0 -1 withscores
]
403 } {4 {a
2 b
7 d
9 c
12}}
405 test
{ZUNIONSTORE with a regular
set and weights
} {
410 list [r zunionstore zsetc
2 seta zsetb weights
2 3] [r zrange zsetc
0 -1 withscores
]
411 } {4 {a
2 b
5 c
8 d
9}}
413 test
{ZUNIONSTORE with AGGREGATE MIN
} {
414 list [r zunionstore zsetc
2 zseta zsetb aggregate min
] [r zrange zsetc
0 -1 withscores
]
415 } {4 {a
1 b
1 c
2 d
3}}
417 test
{ZUNIONSTORE with AGGREGATE MAX
} {
418 list [r zunionstore zsetc
2 zseta zsetb aggregate max
] [r zrange zsetc
0 -1 withscores
]
419 } {4 {a
1 b
2 c
3 d
3}}
421 test
{ZINTERSTORE basics
} {
422 list [r zinterstore zsetc
2 zseta zsetb
] [r zrange zsetc
0 -1 withscores
]
425 test
{ZINTERSTORE with weights
} {
426 list [r zinterstore zsetc
2 zseta zsetb weights
2 3] [r zrange zsetc
0 -1 withscores
]
429 test
{ZINTERSTORE with a regular
set and weights
} {
434 list [r zinterstore zsetc
2 seta zsetb weights
2 3] [r zrange zsetc
0 -1 withscores
]
437 test
{ZINTERSTORE with AGGREGATE MIN
} {
438 list [r zinterstore zsetc
2 zseta zsetb aggregate min
] [r zrange zsetc
0 -1 withscores
]
441 test
{ZINTERSTORE with AGGREGATE MAX
} {
442 list [r zinterstore zsetc
2 zseta zsetb aggregate max
] [r zrange zsetc
0 -1 withscores
]
445 foreach cmd
{ZUNIONSTORE ZINTERSTORE
} {
446 test
"$cmd with +inf/-inf scores" {
447 r del zsetinf1 zsetinf2
449 r zadd zsetinf1
+inf key
450 r zadd zsetinf2
+inf key
451 r
$cmd zsetinf3
2 zsetinf1 zsetinf2
452 assert_equal inf
[r zscore zsetinf3 key
]
454 r zadd zsetinf1
-inf key
455 r zadd zsetinf2
+inf key
456 r
$cmd zsetinf3
2 zsetinf1 zsetinf2
457 assert_equal
0 [r zscore zsetinf3 key
]
459 r zadd zsetinf1
+inf key
460 r zadd zsetinf2
-inf key
461 r
$cmd zsetinf3
2 zsetinf1 zsetinf2
462 assert_equal
0 [r zscore zsetinf3 key
]
464 r zadd zsetinf1
-inf key
465 r zadd zsetinf2
-inf key
466 r
$cmd zsetinf3
2 zsetinf1 zsetinf2
467 assert_equal
-inf [r zscore zsetinf3 key
]
470 test
"$cmd with NaN weights" {
471 r del zsetinf1 zsetinf2
473 r zadd zsetinf1
1.0 key
474 r zadd zsetinf2
1.0 key
475 assert_error
"*weight value is not a double*" {
476 r
$cmd zsetinf3
2 zsetinf1 zsetinf2 weights nan nan
482 test
{ZSETs skiplist implementation backlink consistency test
} {
485 for {set j
0} {$j < $elements} {incr j
} {
486 r zadd myzset
[expr rand
()] "Element-$j"
487 r zrem myzset
"Element-[expr int(rand()*$elements)]"
489 set l1
[r zrange myzset
0 -1]
490 set l2
[r zrevrange myzset
0 -1]
491 for {set j
0} {$j < [llength $l1]} {incr j
} {
492 if {[lindex $l1 $j] ne
[lindex $l2 end-
$j]} {
499 test
{ZSETs ZRANK augmented skip
list stress testing
} {
502 for {set k
0} {$k < 10000} {incr k
} {
503 set i
[expr {$k%1000}]
504 if {[expr rand
()] < .2} {
507 set score
[expr rand
()]
508 r zadd myzset
$score $i
510 set card
[r zcard myzset
]
512 set index
[randomInt
$card]
513 set ele
[lindex [r zrange myzset
$index $index] 0]
514 set rank
[r zrank myzset
$ele]
515 if {$rank != $index} {
516 set err
"$ele RANK is wrong! ($rank != $index)"
525 test
{ZSET element can't be
set to NaN with ZADD
} {
526 assert_error
"*not a double*" {r zadd myzset nan abc
}
529 test
{ZSET element can't be
set to NaN with ZINCRBY
} {
530 assert_error
"*not a double*" {r zadd myzset nan abc
}
533 test
{ZINCRBY calls leading to NaN result in
error} {
534 r zincrby myzset
+inf abc
535 assert_error
"*NaN*" {r zincrby myzset
-inf abc
}