2 # Redis test suite. Copyright (C) 2009 Salvatore Sanfilippo antirez@gmail.com
3 # This softare is released under the BSD License. See the COPYING file for
13 proc test
{name code okpattern
} {
15 if {$::testnum < $::first ||
$::testnum > $::last} return
16 puts -nonewline [format "%-70s " "#$::testnum $name"]
18 set retval
[uplevel 1 $code]
19 if {$okpattern eq
$retval ||
[string match
$okpattern $retval]} {
23 puts "!! ERROR expected\n'$okpattern'\nbut got\n'$retval'"
28 proc randstring
{min max
{type
binary}} {
29 set len
[expr {$min+int
(rand
()*($max-$min+1))}]
31 if {$type eq
{binary}} {
34 } elseif
{$type eq
{alpha
}} {
37 } elseif
{$type eq
{compr
}} {
42 append output
[format "%c" [expr {$minval+int
(rand
()*($maxval-$minval+1))}]]
48 # Useful for some test
49 proc zlistAlikeSort
{a b
} {
50 if {[lindex $a 0] > [lindex $b 0]} {return 1}
51 if {[lindex $a 0] < [lindex $b 0]} {return -1}
52 string compare
[lindex $a 1] [lindex $b 1]
55 proc waitForBgsave r
{
58 if {[string match
{*bgsave_in_progress
:1*} $i]} {
59 puts -nonewline "\nWaiting for background save to finish... "
68 proc waitForBgrewriteaof r
{
71 if {[string match
{*bgrewriteaof_in_progress
:1*} $i]} {
72 puts -nonewline "\nWaiting for background AOF rewrite to finish... "
81 proc randomInt
{max
} {
82 expr {int
(rand
()*$max)}
86 set path
[expr {int
(rand
()*[llength $args])}]
87 uplevel 1 [lindex $args $path]
92 # Small enough to likely collide
95 # 32 bit compressible signed/unsigned
96 randpath
{randomInt
2000000000} {randomInt
4000000000}
99 randpath
{randomInt
1000000000000}
102 randpath
{randstring
0 256 alpha
} \
103 {randstring
0 256 compr
} \
104 {randstring
0 256 binary}
110 # Small enough to likely collide
113 # 32 bit compressible signed/unsigned
114 randpath
{randomInt
2000000000} {randomInt
4000000000}
117 randpath
{randomInt
1000000000000}
120 randpath
{randstring
1 256 alpha
} \
121 {randstring
1 256 compr
}
125 proc createComplexDataset
{r ops
} {
126 for {set j
0} {$j < $ops} {incr j
} {
130 set d
[expr {rand
()}]
132 set d
[expr {rand
()}]
134 set d
[expr {rand
()}]
136 set d
[expr {rand
()}]
138 set d
[expr {rand
()}]
140 randpath
{set d
+inf
} {set d
-inf}
162 randpath
{$r lpush
$k $v} \
169 randpath
{$r sadd
$k $v} \
173 randpath
{$r zadd
$k $d $v} \
180 proc datasetDigest r
{
181 set keys
[lsort [split [$r keys
*] " "]]
187 set aux
[::sha1::sha1 -hex [$r get
$k]]
189 if {[$r llen
$k] == 0} {
192 set aux
[::sha1::sha1 -hex [$r lrange $k 0 -1]]
195 if {[$r scard
$k] == 0} {
198 set aux
[::sha1::sha1 -hex [lsort [$r smembers
$k]]]
201 if {[$r zcard
$k] == 0} {
204 set aux
[::sha1::sha1 -hex [$r zrange
$k 0 -1]]
207 error "Type not supported"
210 if {$aux eq
{}} continue
211 set digest
[::sha1::sha1 -hex [join [list $aux $digest $k] "\n"]]
216 proc main
{server port
} {
217 set r
[redis
$server $port]
222 # The following AUTH test should be enabled only when requirepass
223 # <PASSWORD> is set in redis.conf and redis-server was started with
224 # redis.conf as the first argument.
226 #test {AUTH with requirepass in redis.conf} {
230 test
{DEL all keys to start with a clean DB
} {
231 foreach key
[$r keys
*] {$r del
$key}
235 test
{SET and GET an item
} {
240 test
{SET and GET an empty item
} {
245 test
{DEL against a single item
} {
254 list [$r del foo1 foo2 foo3 foo4
] [$r mget foo1 foo2 foo3
]
257 test
{KEYS with pattern
} {
258 foreach key
{key_x key_y key_z foo_a foo_b foo_c
} {
262 } {foo_a foo_b foo_c
}
264 test
{KEYS to get all keys
} {
266 } {foo_a foo_b foo_c key_x key_y key_z
}
272 test
{DEL all keys
} {
273 foreach key
[$r keys
*] {$r del
$key}
277 test
{Very big payload in GET
/SET
} {
278 set buf
[string repeat
"abcd" 1000000]
281 } [string repeat
"abcd" 1000000]
283 test
{SET
10000 numeric keys and access all them in reverse order
} {
284 for {set x
0} {$x < 10000} {incr x
} {
288 for {set x
9999} {$x >= 0} {incr x
-1} {
294 test
{DBSIZE should be
10001 now
} {
298 test
{INCR against non existing key
} {
300 append res
[$r incr novar
]
301 append res
[$r get novar
]
304 test
{INCR against key created by
incr itself
} {
308 test
{INCR against key originally
set with SET
} {
313 test
{INCR over
32bit value
} {
314 $r set novar
17179869184
318 test
{INCRBY over
32bit value with over
32bit increment
} {
319 $r set novar
17179869184
320 $r incrby novar
17179869184
323 test
{INCR against key with spaces
(no integer encoded
)} {
328 test
{DECRBY over
32bit value with over
32bit increment
, negative res
} {
329 $r set novar
17179869184
330 $r decrby novar
17179869185
333 test
{SETNX target key missing
} {
334 $r setnx novar2 foobared
338 test
{SETNX target key exists
} {
339 $r setnx novar2 blabla
343 test
{SETNX will overwrite EXPIREing key
} {
353 append res
[$r exists newkey
]
355 append res
[$r exists newkey
]
358 test
{Zero length value in key. SET
/GET
/EXISTS
} {
360 set res
[$r get emptykey
]
361 append res
[$r exists emptykey
]
363 append res
[$r exists emptykey
]
366 test
{Commands pipelining
} {
368 puts -nonewline $fd "SET k1 4\r\nxyzk\r\nGET k1\r\nPING\r\n"
371 append res
[string match OK
* [::redis::redis_read_reply $fd]]
372 append res
[::redis::redis_read_reply $fd]
373 append res
[string match PONG
* [::redis::redis_read_reply $fd]]
377 test
{Non existing command
} {
378 catch {$r foobaredcommand
} err
379 string match ERR
* $err
382 test
{Basic LPUSH
, RPUSH
, LLENGTH
, LINDEX
} {
386 set res
[$r llen mylist
]
387 append res
[$r lindex mylist
0]
388 append res
[$r lindex mylist
1]
389 append res
[$r lindex mylist
2]
390 list $res [$r lindex mylist
100]
398 test
{Create a long
list and check every single element with LINDEX
} {
400 for {set i
0} {$i < 1000} {incr i
} {
403 for {set i
0} {$i < 1000} {incr i
} {
404 if {[$r lindex mylist
$i] eq
$i} {incr ok
}
405 if {[$r lindex mylist
[expr (-$i)-1]] eq
[expr 999-$i]} {
412 test
{Test elements with LINDEX in random access
} {
414 for {set i
0} {$i < 1000} {incr i
} {
415 set rint
[expr int
(rand
()*1000)]
416 if {[$r lindex mylist
$rint] eq
$rint} {incr ok
}
417 if {[$r lindex mylist
[expr (-$rint)-1]] eq
[expr 999-$rint]} {
424 test
{Check
if the
list is still ok
after a DEBUG RELOAD
} {
427 for {set i
0} {$i < 1000} {incr i
} {
428 set rint
[expr int
(rand
()*1000)]
429 if {[$r lindex mylist
$rint] eq
$rint} {incr ok
}
430 if {[$r lindex mylist
[expr (-$rint)-1]] eq
[expr 999-$rint]} {
437 test
{LLEN against non-list value
error} {
440 catch {$r llen mylist
} err
444 test
{LLEN against non existing key
} {
448 test
{LINDEX against non-list value
error} {
449 catch {$r lindex mylist
0} err
453 test
{LINDEX against non existing key
} {
454 $r lindex not-a-key
10
457 test
{LPUSH against non-list value
error} {
458 catch {$r lpush mylist
0} err
462 test
{RPUSH against non-list value
error} {
463 catch {$r rpush mylist
0} err
467 test
{RPOPLPUSH base case
} {
473 set v1
[$r rpoplpush mylist newlist
]
474 set v2
[$r rpoplpush mylist newlist
]
475 set l1
[$r lrange mylist
0 -1]
476 set l2
[$r lrange newlist
0 -1]
480 test
{RPOPLPUSH with the same
list as src and dst
} {
485 set l1
[$r lrange mylist
0 -1]
486 set v
[$r rpoplpush mylist mylist
]
487 set l2
[$r lrange mylist
0 -1]
489 } {{a b c
} c
{c a b
}}
491 test
{RPOPLPUSH target
list already exists
} {
499 set v1
[$r rpoplpush mylist newlist
]
500 set v2
[$r rpoplpush mylist newlist
]
501 set l1
[$r lrange mylist
0 -1]
502 set l2
[$r lrange newlist
0 -1]
504 } {d c
{a b
} {c d x
}}
506 test
{RPOPLPUSH against non existing key
} {
509 set v1
[$r rpoplpush mylist newlist
]
510 list $v1 [$r exists mylist
] [$r exists newlist
]
513 test
{RPOPLPUSH against non
list src key
} {
517 catch {$r rpoplpush mylist newlist
} err
518 list [$r type mylist
] [$r exists newlist
] [string range
$err 0 2]
521 test
{RPOPLPUSH against non
list dst key
} {
529 catch {$r rpoplpush mylist newlist
} err
530 list [$r lrange mylist
0 -1] [$r type newlist
] [string range
$err 0 2]
531 } {{a b c d
} string ERR
}
533 test
{RENAME basic usage
} {
535 $r rename mykey mykey1
536 $r rename mykey1 mykey2
540 test
{RENAME
source key should no longer exist
} {
544 test
{RENAME against already existing key
} {
547 $r rename mykey2 mykey
548 set res
[$r get mykey
]
549 append res
[$r exists mykey2
]
552 test
{RENAMENX basic usage
} {
556 $r renamenx mykey mykey2
557 set res
[$r get mykey2
]
558 append res
[$r exists mykey
]
561 test
{RENAMENX against already existing key
} {
564 $r renamenx mykey mykey2
567 test
{RENAMENX against already existing key
(2)} {
568 set res
[$r get mykey
]
569 append res
[$r get mykey2
]
572 test
{RENAME against non existing
source key
} {
573 catch {$r rename nokey foobar
} err
577 test
{RENAME where
source and dest key is the same
} {
578 catch {$r rename mykey mykey
} err
582 test
{DEL all keys again
(DB
0)} {
583 foreach key
[$r keys
*] {
589 test
{DEL all keys again
(DB
1)} {
591 foreach key
[$r keys
*] {
599 test
{MOVE basic usage
} {
603 lappend res
[$r exists mykey
]
604 lappend res
[$r dbsize
]
606 lappend res
[$r get mykey
]
607 lappend res
[$r dbsize
]
610 } [list 0 0 foobar
1]
612 test
{MOVE against key existing in the target DB
} {
617 test
{SET
/GET keys in different DBs
} {
625 lappend res
[$r get a
]
626 lappend res
[$r get b
]
628 lappend res
[$r get a
]
629 lappend res
[$r get b
]
632 } {hello world foo bared
}
634 test
{Basic LPOP
/RPOP
} {
639 list [$r lpop mylist
] [$r rpop mylist
] [$r lpop mylist
] [$r llen mylist
]
642 test
{LPOP
/RPOP against empty
list} {
646 test
{LPOP against non
list value
} {
648 catch {$r lpop notalist
} err
652 test
{Mass LPUSH
/LPOP
} {
654 for {set i
0} {$i < 1000} {incr i
} {
659 for {set i
0} {$i < 500} {incr i
} {
660 incr sum2
[$r lpop mylist
]
661 incr sum2
[$r rpop mylist
]
666 test
{LRANGE basics
} {
667 for {set i
0} {$i < 10} {incr i
} {
670 list [$r lrange mylist
1 -2] \
671 [$r lrange mylist
-3 -1] \
672 [$r lrange mylist
4 4]
673 } {{1 2 3 4 5 6 7 8} {7 8 9} 4}
675 test
{LRANGE inverted indexes
} {
679 test
{LRANGE out of range indexes including the full
list} {
680 $r lrange mylist
-1000 1000
681 } {0 1 2 3 4 5 6 7 8 9}
683 test
{LRANGE against non existing key
} {
684 $r lrange nosuchkey
0 1
687 test
{LTRIM basics
} {
689 for {set i
0} {$i < 100} {incr i
} {
693 $r lrange mylist
0 -1
698 $r lset mylist
-1 bar
699 $r lrange mylist
0 -1
702 test
{LSET out of range index
} {
703 catch {$r lset mylist
10 foo
} err
707 test
{LSET against non existing key
} {
708 catch {$r lset nosuchkey
10 foo
} err
712 test
{LSET against non
list value
} {
714 catch {$r lset nolist
0 foo
} err
718 test
{SADD
, SCARD
, SISMEMBER
, SMEMBERS basics
} {
721 list [$r scard myset
] [$r sismember myset foo
] \
722 [$r sismember myset bar
] [$r sismember myset bla
] \
723 [lsort [$r smembers myset
]]
724 } {2 1 1 0 {bar foo
}}
726 test
{SADD adding the same element multiple times
} {
733 test
{SADD against non
set} {
734 catch {$r sadd mylist foo
} err
741 lsort [$r smembers myset
]
744 test
{Mass SADD and SINTER with two sets
} {
745 for {set i
0} {$i < 1000} {incr i
} {
747 $r sadd set2
[expr $i+995]
749 lsort [$r sinter set1 set2
]
750 } {995 996 997 998 999}
752 test
{SUNION with two sets
} {
753 lsort [$r sunion set1 set2
]
754 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
756 test
{SINTERSTORE with two sets
} {
757 $r sinterstore setres set1 set2
758 lsort [$r smembers setres
]
759 } {995 996 997 998 999}
761 test
{SINTERSTORE with two sets
, after a DEBUG RELOAD
} {
763 $r sinterstore setres set1 set2
764 lsort [$r smembers setres
]
765 } {995 996 997 998 999}
767 test
{SUNIONSTORE with two sets
} {
768 $r sunionstore setres set1 set2
769 lsort [$r smembers setres
]
770 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
772 test
{SUNIONSTORE against non existing keys
} {
774 list [$r sunionstore setres foo111 bar222
] [$r exists xxx
]
777 test
{SINTER against three sets
} {
782 lsort [$r sinter set1 set2 set3
]
785 test
{SINTERSTORE with three sets
} {
786 $r sinterstore setres set1 set2 set3
787 lsort [$r smembers setres
]
790 test
{SUNION with non existing keys
} {
791 lsort [$r sunion nokey1 set1 set2 nokey2
]
792 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
794 test
{SDIFF with two sets
} {
795 for {set i
5} {$i < 1000} {incr i
} {
798 lsort [$r sdiff set1 set4
]
801 test
{SDIFF with three sets
} {
803 lsort [$r sdiff set1 set4 set5
]
806 test
{SDIFFSTORE with three sets
} {
807 $r sdiffstore sres set1 set4 set5
808 lsort [$r smembers sres
]
816 list [lsort [list [$r spop myset
] [$r spop myset
] [$r spop myset
]]] [$r scard myset
]
819 test
{SAVE
- make sure there are all the types as values
} {
820 # Wait for a background saving in progress to terminate
822 $r lpush mysavelist hello
823 $r lpush mysavelist world
825 $r set mynormalkey
{blablablba
}
826 $r zadd mytestzset a
10
827 $r zadd mytestzset b
20
828 $r zadd mytestzset c
30
837 unset -nocomplain myset
839 for {set i
0} {$i < 100} {incr i
} {
840 set myset
([$r srandmember myset
]) 1
842 lsort [array names myset
]
845 test
{Create a random
list} {
847 array set seenrand
{}
848 for {set i
0} {$i < 10000} {incr i
} {
850 # Make sure all the weights are different because
851 # Redis does not use a stable sort but Tcl does.
852 set rint
[expr int
(rand
()*1000000)]
853 if {![info exists seenrand
($rint)]} break
855 set seenrand
($rint) x
857 $r set weight_
$i $rint
858 lappend tosort
[list $i $rint]
860 set sorted
[lsort -index 1 -real $tosort]
862 for {set i
0} {$i < 10000} {incr i
} {
863 lappend res
[lindex $sorted $i 0]
868 test
{SORT with BY against the newly created
list} {
869 $r sort tosort
{BY weight_
*}
872 test
{SORT direct
, numeric
, against the newly created
list} {
874 } [lsort -integer $res]
876 test
{SORT decreasing sort
} {
877 $r sort tosort
{DESC
}
878 } [lsort -decreasing -integer $res]
880 test
{SORT speed
, sorting
10000 elements
list using BY
, 100 times
} {
881 set start
[clock clicks
-milliseconds]
882 for {set i
0} {$i < 100} {incr i
} {
883 set sorted
[$r sort tosort
{BY weight_
* LIMIT
0 10}]
885 set elapsed
[expr [clock clicks
-milliseconds]-$start]
886 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
891 test
{SORT speed
, sorting
10000 elements
list directly
, 100 times
} {
892 set start
[clock clicks
-milliseconds]
893 for {set i
0} {$i < 100} {incr i
} {
894 set sorted
[$r sort tosort
{LIMIT
0 10}]
896 set elapsed
[expr [clock clicks
-milliseconds]-$start]
897 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
902 test
{SORT speed
, pseudo-sorting
10000 elements
list, BY
<const
>, 100 times
} {
903 set start
[clock clicks
-milliseconds]
904 for {set i
0} {$i < 100} {incr i
} {
905 set sorted
[$r sort tosort
{BY nokey LIMIT
0 10}]
907 set elapsed
[expr [clock clicks
-milliseconds]-$start]
908 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
913 test
{SORT regression
for issue
#19, sorting floats} {
915 foreach x
{1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15} {
919 } [lsort -real {1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15}]
921 test
{SORT with GET
#} {
926 $r mset weight_1
10 weight_2
5 weight_3
30
927 $r sort mylist BY weight_
* GET
#
930 test
{LREM
, remove all the occurrences
} {
934 $r rpush mylist foobar
935 $r rpush mylist foobared
940 set res
[$r lrem mylist
0 bar
]
941 list [$r lrange mylist
0 -1] $res
942 } {{foo foobar foobared zap test foo
} 2}
944 test
{LREM
, remove the first occurrence
} {
945 set res
[$r lrem mylist
1 foo
]
946 list [$r lrange mylist
0 -1] $res
947 } {{foobar foobared zap test foo
} 1}
949 test
{LREM
, remove non existing element
} {
950 set res
[$r lrem mylist
1 nosuchelement
]
951 list [$r lrange mylist
0 -1] $res
952 } {{foobar foobared zap test foo
} 0}
954 test
{LREM
, starting from tail with negative count
} {
958 $r rpush mylist foobar
959 $r rpush mylist foobared
965 set res
[$r lrem mylist
-1 bar
]
966 list [$r lrange mylist
0 -1] $res
967 } {{foo bar foobar foobared zap test foo foo
} 1}
969 test
{LREM
, starting from tail with negative count
(2)} {
970 set res
[$r lrem mylist
-2 foo
]
971 list [$r lrange mylist
0 -1] $res
972 } {{foo bar foobar foobared zap test
} 2}
974 test
{LREM
, deleting objects that may be encoded as integers
} {
975 $r lpush myotherlist
1
976 $r lpush myotherlist
2
977 $r lpush myotherlist
3
978 $r lrem myotherlist
1 2
989 test
{MGET against non existing key
} {
990 $r mget foo baazz bar
993 test
{MGET against non-string key
} {
996 $r mget foo baazz bar myset
1005 for {set i
0} {$i < 100} {incr i
} {
1006 set rkey
[$r randomkey
]
1007 if {$rkey eq
{foo
}} {
1010 if {$rkey eq
{bar
}} {
1014 list $foo_seen $bar_seen
1017 test
{RANDOMKEY against empty DB
} {
1022 test
{RANDOMKEY regression
1} {
1029 test
{GETSET
(set new value
)} {
1030 list [$r getset foo xyz
] [$r get foo
]
1033 test
{GETSET
(replace old value
)} {
1035 list [$r getset foo xyz
] [$r get foo
]
1038 test
{SMOVE basics
} {
1045 $r smove myset1 myset2 a
1046 list [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1049 test
{SMOVE non existing key
} {
1050 list [$r smove myset1 myset2 foo
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1051 } {0 {a x y z
} {b c
}}
1053 test
{SMOVE non existing src
set} {
1054 list [$r smove noset myset2 foo
] [lsort [$r smembers myset2
]]
1057 test
{SMOVE non existing dst
set} {
1058 list [$r smove myset2 myset3 y
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset3
]]
1061 test
{SMOVE wrong src key type
} {
1063 catch {$r smove x myset2 foo
} err
1067 test
{SMOVE wrong dst key type
} {
1069 catch {$r smove myset2 x foo
} err
1073 test
{MSET base case
} {
1074 $r mset x
10 y
"foo bar" z
"x x x x x x x\n\n\r\n"
1076 } [list 10 {foo bar
} "x x x x x x x\n\n\r\n"]
1078 test
{MSET wrong number of args
} {
1079 catch {$r mset x
10 y
"foo bar" z
} err
1083 test
{MSETNX with already existent key
} {
1084 list [$r msetnx x1 xxx y2 yyy x
20] [$r exists x1
] [$r exists y2
]
1087 test
{MSETNX with not existing keys
} {
1088 list [$r msetnx x1 xxx y2 yyy
] [$r get x1
] [$r get y2
]
1091 test
{MSETNX should remove all the volatile keys even on
failure} {
1095 list [$r msetnx x A y B z C
] [$r mget x y z
]
1098 test
{ZSET basic ZADD and score
update} {
1102 set aux1
[$r zrange ztmp
0 -1]
1104 set aux2
[$r zrange ztmp
0 -1]
1108 test
{ZCARD basics
} {
1112 test
{ZCARD non existing key
} {
1113 $r zcard ztmp-blabla
1119 for {set i
0} {$i < 1000} {incr i
} {
1120 set score
[expr rand
()]
1122 $r zadd zscoretest
$score $i
1124 for {set i
0} {$i < 1000} {incr i
} {
1125 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1126 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1133 test
{ZSCORE
after a DEBUG RELOAD
} {
1137 for {set i
0} {$i < 1000} {incr i
} {
1138 set score
[expr rand
()]
1140 $r zadd zscoretest
$score $i
1143 for {set i
0} {$i < 1000} {incr i
} {
1144 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1145 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1152 test
{ZRANGE and ZREVRANGE
} {
1153 list [$r zrange ztmp
0 -1] [$r zrevrange ztmp
0 -1]
1156 test
{ZSETs stress tester
- sorting is working well?
} {
1158 for {set test
0} {$test < 2} {incr test
} {
1159 unset -nocomplain auxarray
1160 array set auxarray
{}
1163 for {set i
0} {$i < 1000} {incr i
} {
1165 set score
[expr rand
()]
1167 set score
[expr int
(rand
()*10)]
1169 set auxarray
($i) $score
1170 $r zadd myzset
$score $i
1172 if {[expr rand
()] < .2} {
1173 set j
[expr int
(rand
()*1000)]
1175 set score
[expr rand
()]
1177 set score
[expr int
(rand
()*10)]
1179 set auxarray
($j) $score
1180 $r zadd myzset
$score $j
1183 foreach {item score
} [array get auxarray
] {
1184 lappend auxlist
[list $score $item]
1186 set sorted
[lsort -command zlistAlikeSort
$auxlist]
1189 lappend auxlist
[lindex $x 1]
1191 set fromredis
[$r zrange myzset
0 -1]
1193 for {set i
0} {$i < [llength $fromredis]} {incr i
} {
1194 if {[lindex $fromredis $i] != [lindex $auxlist $i]} {
1202 test
{ZINCRBY
- can create a new sorted
set} {
1204 $r zincrby zset
1 foo
1205 list [$r zrange zset
0 -1] [$r zscore zset foo
]
1208 test
{ZINCRBY
- increment and decrement
} {
1209 $r zincrby zset
2 foo
1210 $r zincrby zset
1 bar
1211 set v1
[$r zrange zset
0 -1]
1212 $r zincrby zset
10 bar
1213 $r zincrby zset
-5 foo
1214 $r zincrby zset
-5 bar
1215 set v2
[$r zrange zset
0 -1]
1216 list $v1 $v2 [$r zscore zset foo
] [$r zscore zset bar
]
1217 } {{bar foo
} {foo bar
} -2 6}
1219 test
{ZRANGEBYSCORE basics
} {
1226 $r zrangebyscore zset
2 4
1229 test
{ZRANGEBYSCORE fuzzy test
, 100 ranges in
1000 elements sorted
set} {
1232 for {set i
0} {$i < 1000} {incr i
} {
1233 $r zadd zset
[expr rand
()] $i
1235 for {set i
0} {$i < 100} {incr i
} {
1236 set min
[expr rand
()]
1237 set max
[expr rand
()]
1243 set low
[$r zrangebyscore zset
-inf $min]
1244 set ok
[$r zrangebyscore zset
$min $max]
1245 set high
[$r zrangebyscore zset
$max +inf
]
1247 set score
[$r zscore zset
$x]
1248 if {$score > $min} {
1249 append err
"Error, score for $x is $score > $min\n"
1253 set score
[$r zscore zset
$x]
1254 if {$score < $min ||
$score > $max} {
1255 append err
"Error, score for $x is $score outside $min-$max range\n"
1259 set score
[$r zscore zset
$x]
1260 if {$score < $max} {
1261 append err
"Error, score for $x is $score < $max\n"
1268 test
{ZRANGEBYSCORE with LIMIT
} {
1276 [$r zrangebyscore zset
0 10 LIMIT
0 2] \
1277 [$r zrangebyscore zset
0 10 LIMIT
2 3] \
1278 [$r zrangebyscore zset
0 10 LIMIT
2 10] \
1279 [$r zrangebyscore zset
0 10 LIMIT
20 10]
1280 } {{a b
} {c d e
} {c d e
} {}}
1282 test
{ZREMRANGE basics
} {
1289 list [$r zremrangebyscore zset
2 4] [$r zrange zset
0 -1]
1292 test
{ZREMRANGE from
-inf to
+inf
} {
1299 list [$r zremrangebyscore zset
-inf +inf
] [$r zrange zset
0 -1]
1302 test
{SORT against sorted sets
} {
1309 $r sort zset alpha desc
1312 test
{Sorted sets
+inf and
-inf handling
} {
1317 $r zadd zset
1000000 d
1318 $r zadd zset
+inf max
1319 $r zadd zset
-inf min
1323 test
{EXPIRE
- don't
set timeouts multiple times
} {
1325 set v1
[$r expire x
5]
1327 set v3
[$r expire x
10]
1329 list $v1 $v2 $v3 $v4
1332 test
{EXPIRE
- It should be still possible to
read 'x'
} {
1336 test
{EXPIRE
- After
6 seconds the key should no longer be here
} {
1338 list [$r get x
] [$r exists x
]
1341 test
{EXPIRE
- Delete on write policy
} {
1349 test
{EXPIREAT
- Check
for EXPIRE alike behavior
} {
1352 $r expireat x
[expr [clock seconds
]+15]
1356 test
{ZSETs skiplist implementation backlink consistency test
} {
1359 for {set j
0} {$j < $elements} {incr j
} {
1360 $r zadd myzset
[expr rand
()] "Element-$j"
1361 $r zrem myzset
"Element-[expr int(rand()*$elements)]"
1363 set l1
[$r zrange myzset
0 -1]
1364 set l2
[$r zrevrange myzset
0 -1]
1365 for {set j
0} {$j < [llength $l1]} {incr j
} {
1366 if {[lindex $l1 $j] ne
[lindex $l2 end-
$j]} {
1373 foreach fuzztype
{binary alpha compr
} {
1374 test
"FUZZ stresser with data model $fuzztype" {
1376 for {set i
0} {$i < 10000} {incr i
} {
1377 set fuzz
[randstring
0 512 $fuzztype]
1379 set got
[$r get foo
]
1380 if {$got ne
$fuzz} {
1381 set err
[list $fuzz $got]
1399 test
{Handle an empty query well
} {
1401 puts -nonewline $fd "\r\n"
1406 test
{Negative multi bulk command does not create problems
} {
1408 puts -nonewline $fd "*-10\r\n"
1413 test
{Negative multi bulk payload
} {
1415 puts -nonewline $fd "SET x -10\r\n"
1420 test
{Too big bulk payload
} {
1422 puts -nonewline $fd "SET x 2000000000\r\n"
1425 } {*invalid bulk
*count
*}
1427 test
{Multi bulk request not followed by bulk args
} {
1429 puts -nonewline $fd "*1\r\nfoo\r\n"
1432 } {*protocol
error*}
1434 test
{Generic wrong number of args
} {
1435 catch {$r ping x y z
} err
1437 } {*wrong
*arguments
*ping
*}
1439 test
{SELECT an out of range DB
} {
1440 catch {$r select
1000000} err
1444 if {![catch {package require sha1
}]} {
1445 test
{Check consistency of different data types
after a reload
} {
1447 createComplexDataset
$r 10000
1448 set sha1
[datasetDigest
$r]
1450 set sha1_after
[datasetDigest
$r]
1451 expr {$sha1 eq
$sha1_after}
1454 test
{Same dataset digest
if saving
/reloading as AOF?
} {
1456 waitForBgrewriteaof
$r
1458 set sha1_after
[datasetDigest
$r]
1459 expr {$sha1 eq
$sha1_after}
1463 test
{EXPIRES
after a reload
(snapshot
+ append only
file)} {
1470 set e1
[expr {$ttl > 900 && $ttl <= 1000}]
1472 waitForBgrewriteaof
$r
1474 set e2
[expr {$ttl > 900 && $ttl <= 1000}]
1478 test
{PIPELINING stresser
(also a regression
for the old epoll bug
)} {
1479 set fd2
[socket 127.0.0.1 6379]
1480 fconfigure $fd2 -encoding binary -translation binary
1482 for {set i
0} {$i < 100000} {incr i
} {
1484 set val
"0000${i}0000"
1485 append q
"SET key:$i [string length $val]\r\n$val\r\n"
1486 puts -nonewline $fd2 $q
1488 append q
"GET key:$i\r\n"
1489 puts -nonewline $fd2 $q
1493 for {set i
0} {$i < 100000} {incr i
} {
1496 set count
[string range
$count 1 end
]
1497 set val
[read $fd2 $count]
1504 # Leave the user with a clean DB before to exit
1509 lappend aux
[$r dbsize
]
1512 lappend aux
[$r dbsize
]
1515 test
{Perform a final SAVE to leave a clean DB on disk
} {
1520 if {[string match
{*Darwin
*} [exec uname
-a]]} {
1521 test
{Check
for memory leaks
} {
1522 exec leaks redis-server
1527 puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
1528 if {$::failed > 0} {
1529 puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
1538 set randkey
[expr int
(rand
()*10000)]
1539 set randval
[expr int
(rand
()*10000)]
1540 set randidx0
[expr int
(rand
()*10)]
1541 set randidx1
[expr int
(rand
()*10)]
1542 set cmd
[expr int
(rand
()*20)]
1544 if {$cmd == 0} {$r set $randkey $randval}
1545 if {$cmd == 1} {$r get
$randkey}
1546 if {$cmd == 2} {$r incr $randkey}
1547 if {$cmd == 3} {$r lpush
$randkey $randval}
1548 if {$cmd == 4} {$r rpop
$randkey}
1549 if {$cmd == 5} {$r del
$randkey}
1550 if {$cmd == 6} {$r llen
$randkey}
1551 if {$cmd == 7} {$r lrange $randkey $randidx0 $randidx1}
1552 if {$cmd == 8} {$r ltrim
$randkey $randidx0 $randidx1}
1553 if {$cmd == 9} {$r lindex $randkey $randidx0}
1554 if {$cmd == 10} {$r lset $randkey $randidx0 $randval}
1555 if {$cmd == 11} {$r sadd
$randkey $randval}
1556 if {$cmd == 12} {$r srem
$randkey $randval}
1557 if {$cmd == 13} {$r smove
$randkey $randval}
1558 if {$cmd == 14} {$r scard
$randkey}
1559 if {$cmd == 15} {$r expire
$randkey [expr $randval%60]}
1567 # Set a few configuration defaults
1568 set ::host 127.0.0.1
1576 for {set j
0} {$j < [llength $argv]} {incr j
} {
1577 set opt
[lindex $argv $j]
1578 set arg
[lindex $argv [expr $j+1]]
1579 set lastarg
[expr {$arg eq
{}}]
1580 if {$opt eq
{-h} && !$lastarg} {
1583 } elseif
{$opt eq
{-p} && !$lastarg} {
1586 } elseif
{$opt eq
{-stress}} {
1588 } elseif
{$opt eq
{--flush}} {
1590 } elseif
{$opt eq
{--first} && !$lastarg} {
1593 } elseif
{$opt eq
{--last} && !$lastarg} {
1597 puts "Wrong argument: $opt"
1602 # Before to run the test check if DB 9 and DB 10 are empty
1610 set db9size
[$r dbsize
]
1612 set db10size
[$r dbsize
]
1613 if {$db9size != 0 ||
$db10size != 0} {
1614 puts "Can't run the tests against DB 9 and 10: DBs are not empty."
1625 main
$::host $::port