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
{RPOPLPUSH against non existing src key
} {
536 $r rpoplpush mylist newlist
539 test
{RENAME basic usage
} {
541 $r rename mykey mykey1
542 $r rename mykey1 mykey2
546 test
{RENAME
source key should no longer exist
} {
550 test
{RENAME against already existing key
} {
553 $r rename mykey2 mykey
554 set res
[$r get mykey
]
555 append res
[$r exists mykey2
]
558 test
{RENAMENX basic usage
} {
562 $r renamenx mykey mykey2
563 set res
[$r get mykey2
]
564 append res
[$r exists mykey
]
567 test
{RENAMENX against already existing key
} {
570 $r renamenx mykey mykey2
573 test
{RENAMENX against already existing key
(2)} {
574 set res
[$r get mykey
]
575 append res
[$r get mykey2
]
578 test
{RENAME against non existing
source key
} {
579 catch {$r rename nokey foobar
} err
583 test
{RENAME where
source and dest key is the same
} {
584 catch {$r rename mykey mykey
} err
588 test
{DEL all keys again
(DB
0)} {
589 foreach key
[$r keys
*] {
595 test
{DEL all keys again
(DB
1)} {
597 foreach key
[$r keys
*] {
605 test
{MOVE basic usage
} {
609 lappend res
[$r exists mykey
]
610 lappend res
[$r dbsize
]
612 lappend res
[$r get mykey
]
613 lappend res
[$r dbsize
]
616 } [list 0 0 foobar
1]
618 test
{MOVE against key existing in the target DB
} {
623 test
{SET
/GET keys in different DBs
} {
631 lappend res
[$r get a
]
632 lappend res
[$r get b
]
634 lappend res
[$r get a
]
635 lappend res
[$r get b
]
638 } {hello world foo bared
}
640 test
{Basic LPOP
/RPOP
} {
645 list [$r lpop mylist
] [$r rpop mylist
] [$r lpop mylist
] [$r llen mylist
]
648 test
{LPOP
/RPOP against empty
list} {
652 test
{LPOP against non
list value
} {
654 catch {$r lpop notalist
} err
658 test
{Mass LPUSH
/LPOP
} {
660 for {set i
0} {$i < 1000} {incr i
} {
665 for {set i
0} {$i < 500} {incr i
} {
666 incr sum2
[$r lpop mylist
]
667 incr sum2
[$r rpop mylist
]
672 test
{LRANGE basics
} {
673 for {set i
0} {$i < 10} {incr i
} {
676 list [$r lrange mylist
1 -2] \
677 [$r lrange mylist
-3 -1] \
678 [$r lrange mylist
4 4]
679 } {{1 2 3 4 5 6 7 8} {7 8 9} 4}
681 test
{LRANGE inverted indexes
} {
685 test
{LRANGE out of range indexes including the full
list} {
686 $r lrange mylist
-1000 1000
687 } {0 1 2 3 4 5 6 7 8 9}
689 test
{LRANGE against non existing key
} {
690 $r lrange nosuchkey
0 1
693 test
{LTRIM basics
} {
695 for {set i
0} {$i < 100} {incr i
} {
699 $r lrange mylist
0 -1
702 test
{LTRIM stress testing
} {
705 for {set i
0} {$i < 20} {incr i
} {
709 for {set j
0} {$j < 100} {incr j
} {
712 for {set i
0} {$i < 20} {incr i
} {
718 $r ltrim mylist
$a $b
719 if {[$r lrange mylist
0 -1] ne
[lrange $mylist $a $b]} {
720 set err
"[$r lrange mylist 0 -1] != [lrange $mylist $a $b]"
729 foreach x
{99 98 97 96 95} {
733 $r lset mylist
-1 bar
734 $r lrange mylist
0 -1
737 test
{LSET out of range index
} {
738 catch {$r lset mylist
10 foo
} err
742 test
{LSET against non existing key
} {
743 catch {$r lset nosuchkey
10 foo
} err
747 test
{LSET against non
list value
} {
749 catch {$r lset nolist
0 foo
} err
753 test
{SADD
, SCARD
, SISMEMBER
, SMEMBERS basics
} {
756 list [$r scard myset
] [$r sismember myset foo
] \
757 [$r sismember myset bar
] [$r sismember myset bla
] \
758 [lsort [$r smembers myset
]]
759 } {2 1 1 0 {bar foo
}}
761 test
{SADD adding the same element multiple times
} {
768 test
{SADD against non
set} {
769 catch {$r sadd mylist foo
} err
776 lsort [$r smembers myset
]
779 test
{Mass SADD and SINTER with two sets
} {
780 for {set i
0} {$i < 1000} {incr i
} {
782 $r sadd set2
[expr $i+995]
784 lsort [$r sinter set1 set2
]
785 } {995 996 997 998 999}
787 test
{SUNION with two sets
} {
788 lsort [$r sunion set1 set2
]
789 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
791 test
{SINTERSTORE with two sets
} {
792 $r sinterstore setres set1 set2
793 lsort [$r smembers setres
]
794 } {995 996 997 998 999}
796 test
{SINTERSTORE with two sets
, after a DEBUG RELOAD
} {
798 $r sinterstore setres set1 set2
799 lsort [$r smembers setres
]
800 } {995 996 997 998 999}
802 test
{SUNIONSTORE with two sets
} {
803 $r sunionstore setres set1 set2
804 lsort [$r smembers setres
]
805 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
807 test
{SUNIONSTORE against non existing keys
} {
809 list [$r sunionstore setres foo111 bar222
] [$r exists xxx
]
812 test
{SINTER against three sets
} {
817 lsort [$r sinter set1 set2 set3
]
820 test
{SINTERSTORE with three sets
} {
821 $r sinterstore setres set1 set2 set3
822 lsort [$r smembers setres
]
825 test
{SUNION with non existing keys
} {
826 lsort [$r sunion nokey1 set1 set2 nokey2
]
827 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
829 test
{SDIFF with two sets
} {
830 for {set i
5} {$i < 1000} {incr i
} {
833 lsort [$r sdiff set1 set4
]
836 test
{SDIFF with three sets
} {
838 lsort [$r sdiff set1 set4 set5
]
841 test
{SDIFFSTORE with three sets
} {
842 $r sdiffstore sres set1 set4 set5
843 lsort [$r smembers sres
]
851 list [lsort [list [$r spop myset
] [$r spop myset
] [$r spop myset
]]] [$r scard myset
]
854 test
{SAVE
- make sure there are all the types as values
} {
855 # Wait for a background saving in progress to terminate
857 $r lpush mysavelist hello
858 $r lpush mysavelist world
860 $r set mynormalkey
{blablablba
}
861 $r zadd mytestzset a
10
862 $r zadd mytestzset b
20
863 $r zadd mytestzset c
30
872 unset -nocomplain myset
874 for {set i
0} {$i < 100} {incr i
} {
875 set myset
([$r srandmember myset
]) 1
877 lsort [array names myset
]
880 test
{Create a random
list and a random
set} {
882 array set seenrand
{}
883 for {set i
0} {$i < 10000} {incr i
} {
885 # Make sure all the weights are different because
886 # Redis does not use a stable sort but Tcl does.
888 set rint
[expr int
(rand
()*1000000)]
890 set rint
[expr rand
()]
892 if {![info exists seenrand
($rint)]} break
894 set seenrand
($rint) x
896 $r sadd tosort-set
$i
897 $r set weight_
$i $rint
898 lappend tosort
[list $i $rint]
900 set sorted
[lsort -index 1 -real $tosort]
902 for {set i
0} {$i < 10000} {incr i
} {
903 lappend res
[lindex $sorted $i 0]
908 test
{SORT with BY against the newly created
list} {
909 $r sort tosort
{BY weight_
*}
912 test
{the same SORT with BY
, but against the newly created
set} {
913 $r sort tosort-set
{BY weight_
*}
916 test
{SORT with BY and STORE against the newly created
list} {
917 $r sort tosort
{BY weight_
*} store sort-res
918 $r lrange sort-res
0 -1
921 test
{SORT direct
, numeric
, against the newly created
list} {
923 } [lsort -integer $res]
925 test
{SORT decreasing sort
} {
926 $r sort tosort
{DESC
}
927 } [lsort -decreasing -integer $res]
929 test
{SORT speed
, sorting
10000 elements
list using BY
, 100 times
} {
930 set start
[clock clicks
-milliseconds]
931 for {set i
0} {$i < 100} {incr i
} {
932 set sorted
[$r sort tosort
{BY weight_
* LIMIT
0 10}]
934 set elapsed
[expr [clock clicks
-milliseconds]-$start]
935 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
940 test
{SORT speed
, sorting
10000 elements
list directly
, 100 times
} {
941 set start
[clock clicks
-milliseconds]
942 for {set i
0} {$i < 100} {incr i
} {
943 set sorted
[$r sort tosort
{LIMIT
0 10}]
945 set elapsed
[expr [clock clicks
-milliseconds]-$start]
946 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
951 test
{SORT speed
, pseudo-sorting
10000 elements
list, BY
<const
>, 100 times
} {
952 set start
[clock clicks
-milliseconds]
953 for {set i
0} {$i < 100} {incr i
} {
954 set sorted
[$r sort tosort
{BY nokey LIMIT
0 10}]
956 set elapsed
[expr [clock clicks
-milliseconds]-$start]
957 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
962 test
{SORT regression
for issue
#19, sorting floats} {
964 foreach x
{1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15} {
968 } [lsort -real {1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15}]
970 test
{SORT with GET
#} {
975 $r mset weight_1
10 weight_2
5 weight_3
30
976 $r sort mylist BY weight_
* GET
#
979 test
{SORT with constant GET
} {
980 $r sort mylist GET foo
983 test
{LREM
, remove all the occurrences
} {
987 $r rpush mylist foobar
988 $r rpush mylist foobared
993 set res
[$r lrem mylist
0 bar
]
994 list [$r lrange mylist
0 -1] $res
995 } {{foo foobar foobared zap test foo
} 2}
997 test
{LREM
, remove the first occurrence
} {
998 set res
[$r lrem mylist
1 foo
]
999 list [$r lrange mylist
0 -1] $res
1000 } {{foobar foobared zap test foo
} 1}
1002 test
{LREM
, remove non existing element
} {
1003 set res
[$r lrem mylist
1 nosuchelement
]
1004 list [$r lrange mylist
0 -1] $res
1005 } {{foobar foobared zap test foo
} 0}
1007 test
{LREM
, starting from tail with negative count
} {
1011 $r rpush mylist foobar
1012 $r rpush mylist foobared
1015 $r rpush mylist test
1018 set res
[$r lrem mylist
-1 bar
]
1019 list [$r lrange mylist
0 -1] $res
1020 } {{foo bar foobar foobared zap test foo foo
} 1}
1022 test
{LREM
, starting from tail with negative count
(2)} {
1023 set res
[$r lrem mylist
-2 foo
]
1024 list [$r lrange mylist
0 -1] $res
1025 } {{foo bar foobar foobared zap test
} 2}
1027 test
{LREM
, deleting objects that may be encoded as integers
} {
1028 $r lpush myotherlist
1
1029 $r lpush myotherlist
2
1030 $r lpush myotherlist
3
1031 $r lrem myotherlist
1 2
1042 test
{MGET against non existing key
} {
1043 $r mget foo baazz bar
1046 test
{MGET against non-string key
} {
1049 $r mget foo baazz bar myset
1058 for {set i
0} {$i < 100} {incr i
} {
1059 set rkey
[$r randomkey
]
1060 if {$rkey eq
{foo
}} {
1063 if {$rkey eq
{bar
}} {
1067 list $foo_seen $bar_seen
1070 test
{RANDOMKEY against empty DB
} {
1075 test
{RANDOMKEY regression
1} {
1082 test
{GETSET
(set new value
)} {
1083 list [$r getset foo xyz
] [$r get foo
]
1086 test
{GETSET
(replace old value
)} {
1088 list [$r getset foo xyz
] [$r get foo
]
1091 test
{SMOVE basics
} {
1098 $r smove myset1 myset2 a
1099 list [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1102 test
{SMOVE non existing key
} {
1103 list [$r smove myset1 myset2 foo
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1104 } {0 {a x y z
} {b c
}}
1106 test
{SMOVE non existing src
set} {
1107 list [$r smove noset myset2 foo
] [lsort [$r smembers myset2
]]
1110 test
{SMOVE non existing dst
set} {
1111 list [$r smove myset2 myset3 y
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset3
]]
1114 test
{SMOVE wrong src key type
} {
1116 catch {$r smove x myset2 foo
} err
1120 test
{SMOVE wrong dst key type
} {
1122 catch {$r smove myset2 x foo
} err
1126 test
{MSET base case
} {
1127 $r mset x
10 y
"foo bar" z
"x x x x x x x\n\n\r\n"
1129 } [list 10 {foo bar
} "x x x x x x x\n\n\r\n"]
1131 test
{MSET wrong number of args
} {
1132 catch {$r mset x
10 y
"foo bar" z
} err
1136 test
{MSETNX with already existent key
} {
1137 list [$r msetnx x1 xxx y2 yyy x
20] [$r exists x1
] [$r exists y2
]
1140 test
{MSETNX with not existing keys
} {
1141 list [$r msetnx x1 xxx y2 yyy
] [$r get x1
] [$r get y2
]
1144 test
{MSETNX should remove all the volatile keys even on
failure} {
1148 list [$r msetnx x A y B z C
] [$r mget x y z
]
1151 test
{ZSET basic ZADD and score
update} {
1155 set aux1
[$r zrange ztmp
0 -1]
1157 set aux2
[$r zrange ztmp
0 -1]
1161 test
{ZCARD basics
} {
1165 test
{ZCARD non existing key
} {
1166 $r zcard ztmp-blabla
1172 for {set i
0} {$i < 1000} {incr i
} {
1173 set score
[expr rand
()]
1175 $r zadd zscoretest
$score $i
1177 for {set i
0} {$i < 1000} {incr i
} {
1178 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1179 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1186 test
{ZSCORE
after a DEBUG RELOAD
} {
1190 for {set i
0} {$i < 1000} {incr i
} {
1191 set score
[expr rand
()]
1193 $r zadd zscoretest
$score $i
1196 for {set i
0} {$i < 1000} {incr i
} {
1197 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1198 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1205 test
{ZRANGE and ZREVRANGE basics
} {
1206 list [$r zrange ztmp
0 -1] [$r zrevrange ztmp
0 -1] \
1207 [$r zrange ztmp
1 -1] [$r zrevrange ztmp
1 -1]
1208 } {{y x z
} {z x y
} {x z
} {x y
}}
1210 test
{ZRANGE WITHSCORES
} {
1211 $r zrange ztmp
0 -1 withscores
1214 test
{ZSETs stress tester
- sorting is working well?
} {
1216 for {set test
0} {$test < 2} {incr test
} {
1217 unset -nocomplain auxarray
1218 array set auxarray
{}
1221 for {set i
0} {$i < 1000} {incr i
} {
1223 set score
[expr rand
()]
1225 set score
[expr int
(rand
()*10)]
1227 set auxarray
($i) $score
1228 $r zadd myzset
$score $i
1230 if {[expr rand
()] < .2} {
1231 set j
[expr int
(rand
()*1000)]
1233 set score
[expr rand
()]
1235 set score
[expr int
(rand
()*10)]
1237 set auxarray
($j) $score
1238 $r zadd myzset
$score $j
1241 foreach {item score
} [array get auxarray
] {
1242 lappend auxlist
[list $score $item]
1244 set sorted
[lsort -command zlistAlikeSort
$auxlist]
1247 lappend auxlist
[lindex $x 1]
1249 set fromredis
[$r zrange myzset
0 -1]
1251 for {set i
0} {$i < [llength $fromredis]} {incr i
} {
1252 if {[lindex $fromredis $i] != [lindex $auxlist $i]} {
1260 test
{ZINCRBY
- can create a new sorted
set} {
1262 $r zincrby zset
1 foo
1263 list [$r zrange zset
0 -1] [$r zscore zset foo
]
1266 test
{ZINCRBY
- increment and decrement
} {
1267 $r zincrby zset
2 foo
1268 $r zincrby zset
1 bar
1269 set v1
[$r zrange zset
0 -1]
1270 $r zincrby zset
10 bar
1271 $r zincrby zset
-5 foo
1272 $r zincrby zset
-5 bar
1273 set v2
[$r zrange zset
0 -1]
1274 list $v1 $v2 [$r zscore zset foo
] [$r zscore zset bar
]
1275 } {{bar foo
} {foo bar
} -2 6}
1277 test
{ZRANGEBYSCORE basics
} {
1284 $r zrangebyscore zset
2 4
1287 test
{ZRANGEBYSCORE fuzzy test
, 100 ranges in
1000 elements sorted
set} {
1290 for {set i
0} {$i < 1000} {incr i
} {
1291 $r zadd zset
[expr rand
()] $i
1293 for {set i
0} {$i < 100} {incr i
} {
1294 set min
[expr rand
()]
1295 set max
[expr rand
()]
1301 set low
[$r zrangebyscore zset
-inf $min]
1302 set ok
[$r zrangebyscore zset
$min $max]
1303 set high
[$r zrangebyscore zset
$max +inf
]
1305 set score
[$r zscore zset
$x]
1306 if {$score > $min} {
1307 append err
"Error, score for $x is $score > $min\n"
1311 set score
[$r zscore zset
$x]
1312 if {$score < $min ||
$score > $max} {
1313 append err
"Error, score for $x is $score outside $min-$max range\n"
1317 set score
[$r zscore zset
$x]
1318 if {$score < $max} {
1319 append err
"Error, score for $x is $score < $max\n"
1326 test
{ZRANGEBYSCORE with LIMIT
} {
1334 [$r zrangebyscore zset
0 10 LIMIT
0 2] \
1335 [$r zrangebyscore zset
0 10 LIMIT
2 3] \
1336 [$r zrangebyscore zset
0 10 LIMIT
2 10] \
1337 [$r zrangebyscore zset
0 10 LIMIT
20 10]
1338 } {{a b
} {c d e
} {c d e
} {}}
1340 test
{ZREMRANGE basics
} {
1347 list [$r zremrangebyscore zset
2 4] [$r zrange zset
0 -1]
1350 test
{ZREMRANGE from
-inf to
+inf
} {
1357 list [$r zremrangebyscore zset
-inf +inf
] [$r zrange zset
0 -1]
1360 test
{SORT against sorted sets
} {
1367 $r sort zset alpha desc
1370 test
{Sorted sets
+inf and
-inf handling
} {
1375 $r zadd zset
1000000 d
1376 $r zadd zset
+inf max
1377 $r zadd zset
-inf min
1381 test
{EXPIRE
- don't
set timeouts multiple times
} {
1383 set v1
[$r expire x
5]
1385 set v3
[$r expire x
10]
1387 list $v1 $v2 $v3 $v4
1390 test
{EXPIRE
- It should be still possible to
read 'x'
} {
1394 test
{EXPIRE
- After
6 seconds the key should no longer be here
} {
1396 list [$r get x
] [$r exists x
]
1399 test
{EXPIRE
- Delete on write policy
} {
1407 test
{EXPIREAT
- Check
for EXPIRE alike behavior
} {
1410 $r expireat x
[expr [clock seconds
]+15]
1414 test
{ZSETs skiplist implementation backlink consistency test
} {
1417 for {set j
0} {$j < $elements} {incr j
} {
1418 $r zadd myzset
[expr rand
()] "Element-$j"
1419 $r zrem myzset
"Element-[expr int(rand()*$elements)]"
1421 set l1
[$r zrange myzset
0 -1]
1422 set l2
[$r zrevrange myzset
0 -1]
1423 for {set j
0} {$j < [llength $l1]} {incr j
} {
1424 if {[lindex $l1 $j] ne
[lindex $l2 end-
$j]} {
1431 foreach fuzztype
{binary alpha compr
} {
1432 test
"FUZZ stresser with data model $fuzztype" {
1434 for {set i
0} {$i < 10000} {incr i
} {
1435 set fuzz
[randstring
0 512 $fuzztype]
1437 set got
[$r get foo
]
1438 if {$got ne
$fuzz} {
1439 set err
[list $fuzz $got]
1457 test
{Handle an empty query well
} {
1459 puts -nonewline $fd "\r\n"
1464 test
{Negative multi bulk command does not create problems
} {
1466 puts -nonewline $fd "*-10\r\n"
1471 test
{Negative multi bulk payload
} {
1473 puts -nonewline $fd "SET x -10\r\n"
1478 test
{Too big bulk payload
} {
1480 puts -nonewline $fd "SET x 2000000000\r\n"
1483 } {*invalid bulk
*count
*}
1485 test
{Multi bulk request not followed by bulk args
} {
1487 puts -nonewline $fd "*1\r\nfoo\r\n"
1490 } {*protocol
error*}
1492 test
{Generic wrong number of args
} {
1493 catch {$r ping x y z
} err
1495 } {*wrong
*arguments
*ping
*}
1497 test
{SELECT an out of range DB
} {
1498 catch {$r select
1000000} err
1502 if {![catch {package require sha1
}]} {
1503 test
{Check consistency of different data types
after a reload
} {
1505 createComplexDataset
$r 10000
1506 set sha1
[datasetDigest
$r]
1508 set sha1_after
[datasetDigest
$r]
1509 expr {$sha1 eq
$sha1_after}
1512 test
{Same dataset digest
if saving
/reloading as AOF?
} {
1514 waitForBgrewriteaof
$r
1516 set sha1_after
[datasetDigest
$r]
1517 expr {$sha1 eq
$sha1_after}
1521 test
{EXPIRES
after a reload
(snapshot
+ append only
file)} {
1528 set e1
[expr {$ttl > 900 && $ttl <= 1000}]
1530 waitForBgrewriteaof
$r
1532 set e2
[expr {$ttl > 900 && $ttl <= 1000}]
1536 test
{PIPELINING stresser
(also a regression
for the old epoll bug
)} {
1537 set fd2
[socket 127.0.0.1 6379]
1538 fconfigure $fd2 -encoding binary -translation binary
1539 puts -nonewline $fd2 "SELECT 9\r\n"
1543 for {set i
0} {$i < 100000} {incr i
} {
1545 set val
"0000${i}0000"
1546 append q
"SET key:$i [string length $val]\r\n$val\r\n"
1547 puts -nonewline $fd2 $q
1549 append q
"GET key:$i\r\n"
1550 puts -nonewline $fd2 $q
1554 for {set i
0} {$i < 100000} {incr i
} {
1557 set count
[string range
$count 1 end
]
1558 set val
[read $fd2 $count]
1565 test
{MUTLI
/ EXEC basics
} {
1571 set v1
[$r lrange mylist
0 -1]
1575 } {QUEUED QUEUED
{{a b c
} PONG
}}
1577 # Leave the user with a clean DB before to exit
1582 lappend aux
[$r dbsize
]
1585 lappend aux
[$r dbsize
]
1588 test
{Perform a final SAVE to leave a clean DB on disk
} {
1593 if {[string match
{*Darwin
*} [exec uname
-a]]} {
1594 test
{Check
for memory leaks
} {
1595 exec leaks redis-server
1600 puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
1601 if {$::failed > 0} {
1602 puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
1611 set randkey
[expr int
(rand
()*10000)]
1612 set randval
[expr int
(rand
()*10000)]
1613 set randidx0
[expr int
(rand
()*10)]
1614 set randidx1
[expr int
(rand
()*10)]
1615 set cmd
[expr int
(rand
()*20)]
1617 if {$cmd == 0} {$r set $randkey $randval}
1618 if {$cmd == 1} {$r get
$randkey}
1619 if {$cmd == 2} {$r incr $randkey}
1620 if {$cmd == 3} {$r lpush
$randkey $randval}
1621 if {$cmd == 4} {$r rpop
$randkey}
1622 if {$cmd == 5} {$r del
$randkey}
1623 if {$cmd == 6} {$r llen
$randkey}
1624 if {$cmd == 7} {$r lrange $randkey $randidx0 $randidx1}
1625 if {$cmd == 8} {$r ltrim
$randkey $randidx0 $randidx1}
1626 if {$cmd == 9} {$r lindex $randkey $randidx0}
1627 if {$cmd == 10} {$r lset $randkey $randidx0 $randval}
1628 if {$cmd == 11} {$r sadd
$randkey $randval}
1629 if {$cmd == 12} {$r srem
$randkey $randval}
1630 if {$cmd == 13} {$r smove
$randkey $randval}
1631 if {$cmd == 14} {$r scard
$randkey}
1632 if {$cmd == 15} {$r expire
$randkey [expr $randval%60]}
1640 # Set a few configuration defaults
1641 set ::host 127.0.0.1
1649 for {set j
0} {$j < [llength $argv]} {incr j
} {
1650 set opt
[lindex $argv $j]
1651 set arg
[lindex $argv [expr $j+1]]
1652 set lastarg
[expr {$arg eq
{}}]
1653 if {$opt eq
{-h} && !$lastarg} {
1656 } elseif
{$opt eq
{-p} && !$lastarg} {
1659 } elseif
{$opt eq
{-stress}} {
1661 } elseif
{$opt eq
{--flush}} {
1663 } elseif
{$opt eq
{--first} && !$lastarg} {
1666 } elseif
{$opt eq
{--last} && !$lastarg} {
1670 puts "Wrong argument: $opt"
1675 # Before to run the test check if DB 9 and DB 10 are empty
1683 set db9size
[$r dbsize
]
1685 set db10size
[$r dbsize
]
1686 if {$db9size != 0 ||
$db10size != 0} {
1687 puts "Can't run the tests against DB 9 and 10: DBs are not empty."
1698 main
$::host $::port