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
696 test
{LTRIM stress testing
} {
699 for {set i
0} {$i < 20} {incr i
} {
703 for {set j
0} {$j < 100} {incr j
} {
706 for {set i
0} {$i < 20} {incr i
} {
712 $r ltrim mylist
$a $b
713 if {[$r lrange mylist
0 -1] ne
[lrange $mylist $a $b]} {
714 set err
"[$r lrange mylist 0 -1] != [lrange $mylist $a $b]"
723 foreach x
{99 98 97 96 95} {
727 $r lset mylist
-1 bar
728 $r lrange mylist
0 -1
731 test
{LSET out of range index
} {
732 catch {$r lset mylist
10 foo
} err
736 test
{LSET against non existing key
} {
737 catch {$r lset nosuchkey
10 foo
} err
741 test
{LSET against non
list value
} {
743 catch {$r lset nolist
0 foo
} err
747 test
{SADD
, SCARD
, SISMEMBER
, SMEMBERS basics
} {
750 list [$r scard myset
] [$r sismember myset foo
] \
751 [$r sismember myset bar
] [$r sismember myset bla
] \
752 [lsort [$r smembers myset
]]
753 } {2 1 1 0 {bar foo
}}
755 test
{SADD adding the same element multiple times
} {
762 test
{SADD against non
set} {
763 catch {$r sadd mylist foo
} err
770 lsort [$r smembers myset
]
773 test
{Mass SADD and SINTER with two sets
} {
774 for {set i
0} {$i < 1000} {incr i
} {
776 $r sadd set2
[expr $i+995]
778 lsort [$r sinter set1 set2
]
779 } {995 996 997 998 999}
781 test
{SUNION with two sets
} {
782 lsort [$r sunion set1 set2
]
783 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
785 test
{SINTERSTORE with two sets
} {
786 $r sinterstore setres set1 set2
787 lsort [$r smembers setres
]
788 } {995 996 997 998 999}
790 test
{SINTERSTORE with two sets
, after a DEBUG RELOAD
} {
792 $r sinterstore setres set1 set2
793 lsort [$r smembers setres
]
794 } {995 996 997 998 999}
796 test
{SUNIONSTORE with two sets
} {
797 $r sunionstore setres set1 set2
798 lsort [$r smembers setres
]
799 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
801 test
{SUNIONSTORE against non existing keys
} {
803 list [$r sunionstore setres foo111 bar222
] [$r exists xxx
]
806 test
{SINTER against three sets
} {
811 lsort [$r sinter set1 set2 set3
]
814 test
{SINTERSTORE with three sets
} {
815 $r sinterstore setres set1 set2 set3
816 lsort [$r smembers setres
]
819 test
{SUNION with non existing keys
} {
820 lsort [$r sunion nokey1 set1 set2 nokey2
]
821 } [lsort -uniq "[$r smembers set1] [$r smembers set2]"]
823 test
{SDIFF with two sets
} {
824 for {set i
5} {$i < 1000} {incr i
} {
827 lsort [$r sdiff set1 set4
]
830 test
{SDIFF with three sets
} {
832 lsort [$r sdiff set1 set4 set5
]
835 test
{SDIFFSTORE with three sets
} {
836 $r sdiffstore sres set1 set4 set5
837 lsort [$r smembers sres
]
845 list [lsort [list [$r spop myset
] [$r spop myset
] [$r spop myset
]]] [$r scard myset
]
848 test
{SAVE
- make sure there are all the types as values
} {
849 # Wait for a background saving in progress to terminate
851 $r lpush mysavelist hello
852 $r lpush mysavelist world
854 $r set mynormalkey
{blablablba
}
855 $r zadd mytestzset a
10
856 $r zadd mytestzset b
20
857 $r zadd mytestzset c
30
866 unset -nocomplain myset
868 for {set i
0} {$i < 100} {incr i
} {
869 set myset
([$r srandmember myset
]) 1
871 lsort [array names myset
]
874 test
{Create a random
list} {
876 array set seenrand
{}
877 for {set i
0} {$i < 10000} {incr i
} {
879 # Make sure all the weights are different because
880 # Redis does not use a stable sort but Tcl does.
881 set rint
[expr int
(rand
()*1000000)]
882 if {![info exists seenrand
($rint)]} break
884 set seenrand
($rint) x
886 $r set weight_
$i $rint
887 lappend tosort
[list $i $rint]
889 set sorted
[lsort -index 1 -real $tosort]
891 for {set i
0} {$i < 10000} {incr i
} {
892 lappend res
[lindex $sorted $i 0]
897 test
{SORT with BY against the newly created
list} {
898 $r sort tosort
{BY weight_
*}
901 test
{SORT direct
, numeric
, against the newly created
list} {
903 } [lsort -integer $res]
905 test
{SORT decreasing sort
} {
906 $r sort tosort
{DESC
}
907 } [lsort -decreasing -integer $res]
909 test
{SORT speed
, sorting
10000 elements
list using BY
, 100 times
} {
910 set start
[clock clicks
-milliseconds]
911 for {set i
0} {$i < 100} {incr i
} {
912 set sorted
[$r sort tosort
{BY weight_
* LIMIT
0 10}]
914 set elapsed
[expr [clock clicks
-milliseconds]-$start]
915 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
920 test
{SORT speed
, sorting
10000 elements
list directly
, 100 times
} {
921 set start
[clock clicks
-milliseconds]
922 for {set i
0} {$i < 100} {incr i
} {
923 set sorted
[$r sort tosort
{LIMIT
0 10}]
925 set elapsed
[expr [clock clicks
-milliseconds]-$start]
926 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
931 test
{SORT speed
, pseudo-sorting
10000 elements
list, BY
<const
>, 100 times
} {
932 set start
[clock clicks
-milliseconds]
933 for {set i
0} {$i < 100} {incr i
} {
934 set sorted
[$r sort tosort
{BY nokey LIMIT
0 10}]
936 set elapsed
[expr [clock clicks
-milliseconds]-$start]
937 puts -nonewline "\n Average time to sort: [expr double($elapsed)/100] milliseconds "
942 test
{SORT regression
for issue
#19, sorting floats} {
944 foreach x
{1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15} {
948 } [lsort -real {1.1 5.10 3.10 7.44 2.1 5.75 6.12 0.25 1.15}]
950 test
{SORT with GET
#} {
955 $r mset weight_1
10 weight_2
5 weight_3
30
956 $r sort mylist BY weight_
* GET
#
959 test
{LREM
, remove all the occurrences
} {
963 $r rpush mylist foobar
964 $r rpush mylist foobared
969 set res
[$r lrem mylist
0 bar
]
970 list [$r lrange mylist
0 -1] $res
971 } {{foo foobar foobared zap test foo
} 2}
973 test
{LREM
, remove the first occurrence
} {
974 set res
[$r lrem mylist
1 foo
]
975 list [$r lrange mylist
0 -1] $res
976 } {{foobar foobared zap test foo
} 1}
978 test
{LREM
, remove non existing element
} {
979 set res
[$r lrem mylist
1 nosuchelement
]
980 list [$r lrange mylist
0 -1] $res
981 } {{foobar foobared zap test foo
} 0}
983 test
{LREM
, starting from tail with negative count
} {
987 $r rpush mylist foobar
988 $r rpush mylist foobared
994 set res
[$r lrem mylist
-1 bar
]
995 list [$r lrange mylist
0 -1] $res
996 } {{foo bar foobar foobared zap test foo foo
} 1}
998 test
{LREM
, starting from tail with negative count
(2)} {
999 set res
[$r lrem mylist
-2 foo
]
1000 list [$r lrange mylist
0 -1] $res
1001 } {{foo bar foobar foobared zap test
} 2}
1003 test
{LREM
, deleting objects that may be encoded as integers
} {
1004 $r lpush myotherlist
1
1005 $r lpush myotherlist
2
1006 $r lpush myotherlist
3
1007 $r lrem myotherlist
1 2
1018 test
{MGET against non existing key
} {
1019 $r mget foo baazz bar
1022 test
{MGET against non-string key
} {
1025 $r mget foo baazz bar myset
1034 for {set i
0} {$i < 100} {incr i
} {
1035 set rkey
[$r randomkey
]
1036 if {$rkey eq
{foo
}} {
1039 if {$rkey eq
{bar
}} {
1043 list $foo_seen $bar_seen
1046 test
{RANDOMKEY against empty DB
} {
1051 test
{RANDOMKEY regression
1} {
1058 test
{GETSET
(set new value
)} {
1059 list [$r getset foo xyz
] [$r get foo
]
1062 test
{GETSET
(replace old value
)} {
1064 list [$r getset foo xyz
] [$r get foo
]
1067 test
{SMOVE basics
} {
1074 $r smove myset1 myset2 a
1075 list [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1078 test
{SMOVE non existing key
} {
1079 list [$r smove myset1 myset2 foo
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset1
]]
1080 } {0 {a x y z
} {b c
}}
1082 test
{SMOVE non existing src
set} {
1083 list [$r smove noset myset2 foo
] [lsort [$r smembers myset2
]]
1086 test
{SMOVE non existing dst
set} {
1087 list [$r smove myset2 myset3 y
] [lsort [$r smembers myset2
]] [lsort [$r smembers myset3
]]
1090 test
{SMOVE wrong src key type
} {
1092 catch {$r smove x myset2 foo
} err
1096 test
{SMOVE wrong dst key type
} {
1098 catch {$r smove myset2 x foo
} err
1102 test
{MSET base case
} {
1103 $r mset x
10 y
"foo bar" z
"x x x x x x x\n\n\r\n"
1105 } [list 10 {foo bar
} "x x x x x x x\n\n\r\n"]
1107 test
{MSET wrong number of args
} {
1108 catch {$r mset x
10 y
"foo bar" z
} err
1112 test
{MSETNX with already existent key
} {
1113 list [$r msetnx x1 xxx y2 yyy x
20] [$r exists x1
] [$r exists y2
]
1116 test
{MSETNX with not existing keys
} {
1117 list [$r msetnx x1 xxx y2 yyy
] [$r get x1
] [$r get y2
]
1120 test
{MSETNX should remove all the volatile keys even on
failure} {
1124 list [$r msetnx x A y B z C
] [$r mget x y z
]
1127 test
{ZSET basic ZADD and score
update} {
1131 set aux1
[$r zrange ztmp
0 -1]
1133 set aux2
[$r zrange ztmp
0 -1]
1137 test
{ZCARD basics
} {
1141 test
{ZCARD non existing key
} {
1142 $r zcard ztmp-blabla
1148 for {set i
0} {$i < 1000} {incr i
} {
1149 set score
[expr rand
()]
1151 $r zadd zscoretest
$score $i
1153 for {set i
0} {$i < 1000} {incr i
} {
1154 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1155 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1162 test
{ZSCORE
after a DEBUG RELOAD
} {
1166 for {set i
0} {$i < 1000} {incr i
} {
1167 set score
[expr rand
()]
1169 $r zadd zscoretest
$score $i
1172 for {set i
0} {$i < 1000} {incr i
} {
1173 if {[$r zscore zscoretest
$i] != [lindex $aux $i]} {
1174 set err
"Expected score was [lindex $aux $i] but got [$r zscore zscoretest $i] for element $i"
1181 test
{ZRANGE and ZREVRANGE
} {
1182 list [$r zrange ztmp
0 -1] [$r zrevrange ztmp
0 -1]
1185 test
{ZSETs stress tester
- sorting is working well?
} {
1187 for {set test
0} {$test < 2} {incr test
} {
1188 unset -nocomplain auxarray
1189 array set auxarray
{}
1192 for {set i
0} {$i < 1000} {incr i
} {
1194 set score
[expr rand
()]
1196 set score
[expr int
(rand
()*10)]
1198 set auxarray
($i) $score
1199 $r zadd myzset
$score $i
1201 if {[expr rand
()] < .2} {
1202 set j
[expr int
(rand
()*1000)]
1204 set score
[expr rand
()]
1206 set score
[expr int
(rand
()*10)]
1208 set auxarray
($j) $score
1209 $r zadd myzset
$score $j
1212 foreach {item score
} [array get auxarray
] {
1213 lappend auxlist
[list $score $item]
1215 set sorted
[lsort -command zlistAlikeSort
$auxlist]
1218 lappend auxlist
[lindex $x 1]
1220 set fromredis
[$r zrange myzset
0 -1]
1222 for {set i
0} {$i < [llength $fromredis]} {incr i
} {
1223 if {[lindex $fromredis $i] != [lindex $auxlist $i]} {
1231 test
{ZINCRBY
- can create a new sorted
set} {
1233 $r zincrby zset
1 foo
1234 list [$r zrange zset
0 -1] [$r zscore zset foo
]
1237 test
{ZINCRBY
- increment and decrement
} {
1238 $r zincrby zset
2 foo
1239 $r zincrby zset
1 bar
1240 set v1
[$r zrange zset
0 -1]
1241 $r zincrby zset
10 bar
1242 $r zincrby zset
-5 foo
1243 $r zincrby zset
-5 bar
1244 set v2
[$r zrange zset
0 -1]
1245 list $v1 $v2 [$r zscore zset foo
] [$r zscore zset bar
]
1246 } {{bar foo
} {foo bar
} -2 6}
1248 test
{ZRANGEBYSCORE basics
} {
1255 $r zrangebyscore zset
2 4
1258 test
{ZRANGEBYSCORE fuzzy test
, 100 ranges in
1000 elements sorted
set} {
1261 for {set i
0} {$i < 1000} {incr i
} {
1262 $r zadd zset
[expr rand
()] $i
1264 for {set i
0} {$i < 100} {incr i
} {
1265 set min
[expr rand
()]
1266 set max
[expr rand
()]
1272 set low
[$r zrangebyscore zset
-inf $min]
1273 set ok
[$r zrangebyscore zset
$min $max]
1274 set high
[$r zrangebyscore zset
$max +inf
]
1276 set score
[$r zscore zset
$x]
1277 if {$score > $min} {
1278 append err
"Error, score for $x is $score > $min\n"
1282 set score
[$r zscore zset
$x]
1283 if {$score < $min ||
$score > $max} {
1284 append err
"Error, score for $x is $score outside $min-$max range\n"
1288 set score
[$r zscore zset
$x]
1289 if {$score < $max} {
1290 append err
"Error, score for $x is $score < $max\n"
1297 test
{ZRANGEBYSCORE with LIMIT
} {
1305 [$r zrangebyscore zset
0 10 LIMIT
0 2] \
1306 [$r zrangebyscore zset
0 10 LIMIT
2 3] \
1307 [$r zrangebyscore zset
0 10 LIMIT
2 10] \
1308 [$r zrangebyscore zset
0 10 LIMIT
20 10]
1309 } {{a b
} {c d e
} {c d e
} {}}
1311 test
{ZREMRANGE basics
} {
1318 list [$r zremrangebyscore zset
2 4] [$r zrange zset
0 -1]
1321 test
{ZREMRANGE from
-inf to
+inf
} {
1328 list [$r zremrangebyscore zset
-inf +inf
] [$r zrange zset
0 -1]
1331 test
{SORT against sorted sets
} {
1338 $r sort zset alpha desc
1341 test
{Sorted sets
+inf and
-inf handling
} {
1346 $r zadd zset
1000000 d
1347 $r zadd zset
+inf max
1348 $r zadd zset
-inf min
1352 test
{EXPIRE
- don't
set timeouts multiple times
} {
1354 set v1
[$r expire x
5]
1356 set v3
[$r expire x
10]
1358 list $v1 $v2 $v3 $v4
1361 test
{EXPIRE
- It should be still possible to
read 'x'
} {
1365 test
{EXPIRE
- After
6 seconds the key should no longer be here
} {
1367 list [$r get x
] [$r exists x
]
1370 test
{EXPIRE
- Delete on write policy
} {
1378 test
{EXPIREAT
- Check
for EXPIRE alike behavior
} {
1381 $r expireat x
[expr [clock seconds
]+15]
1385 test
{ZSETs skiplist implementation backlink consistency test
} {
1388 for {set j
0} {$j < $elements} {incr j
} {
1389 $r zadd myzset
[expr rand
()] "Element-$j"
1390 $r zrem myzset
"Element-[expr int(rand()*$elements)]"
1392 set l1
[$r zrange myzset
0 -1]
1393 set l2
[$r zrevrange myzset
0 -1]
1394 for {set j
0} {$j < [llength $l1]} {incr j
} {
1395 if {[lindex $l1 $j] ne
[lindex $l2 end-
$j]} {
1402 foreach fuzztype
{binary alpha compr
} {
1403 test
"FUZZ stresser with data model $fuzztype" {
1405 for {set i
0} {$i < 10000} {incr i
} {
1406 set fuzz
[randstring
0 512 $fuzztype]
1408 set got
[$r get foo
]
1409 if {$got ne
$fuzz} {
1410 set err
[list $fuzz $got]
1428 test
{Handle an empty query well
} {
1430 puts -nonewline $fd "\r\n"
1435 test
{Negative multi bulk command does not create problems
} {
1437 puts -nonewline $fd "*-10\r\n"
1442 test
{Negative multi bulk payload
} {
1444 puts -nonewline $fd "SET x -10\r\n"
1449 test
{Too big bulk payload
} {
1451 puts -nonewline $fd "SET x 2000000000\r\n"
1454 } {*invalid bulk
*count
*}
1456 test
{Multi bulk request not followed by bulk args
} {
1458 puts -nonewline $fd "*1\r\nfoo\r\n"
1461 } {*protocol
error*}
1463 test
{Generic wrong number of args
} {
1464 catch {$r ping x y z
} err
1466 } {*wrong
*arguments
*ping
*}
1468 test
{SELECT an out of range DB
} {
1469 catch {$r select
1000000} err
1473 if {![catch {package require sha1
}]} {
1474 test
{Check consistency of different data types
after a reload
} {
1476 createComplexDataset
$r 10000
1477 set sha1
[datasetDigest
$r]
1479 set sha1_after
[datasetDigest
$r]
1480 expr {$sha1 eq
$sha1_after}
1483 test
{Same dataset digest
if saving
/reloading as AOF?
} {
1485 waitForBgrewriteaof
$r
1487 set sha1_after
[datasetDigest
$r]
1488 expr {$sha1 eq
$sha1_after}
1492 test
{EXPIRES
after a reload
(snapshot
+ append only
file)} {
1499 set e1
[expr {$ttl > 900 && $ttl <= 1000}]
1501 waitForBgrewriteaof
$r
1503 set e2
[expr {$ttl > 900 && $ttl <= 1000}]
1507 test
{PIPELINING stresser
(also a regression
for the old epoll bug
)} {
1508 set fd2
[socket 127.0.0.1 6379]
1509 fconfigure $fd2 -encoding binary -translation binary
1511 for {set i
0} {$i < 100000} {incr i
} {
1513 set val
"0000${i}0000"
1514 append q
"SET key:$i [string length $val]\r\n$val\r\n"
1515 puts -nonewline $fd2 $q
1517 append q
"GET key:$i\r\n"
1518 puts -nonewline $fd2 $q
1522 for {set i
0} {$i < 100000} {incr i
} {
1525 set count
[string range
$count 1 end
]
1526 set val
[read $fd2 $count]
1533 # Leave the user with a clean DB before to exit
1538 lappend aux
[$r dbsize
]
1541 lappend aux
[$r dbsize
]
1544 test
{Perform a final SAVE to leave a clean DB on disk
} {
1549 if {[string match
{*Darwin
*} [exec uname
-a]]} {
1550 test
{Check
for memory leaks
} {
1551 exec leaks redis-server
1556 puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
1557 if {$::failed > 0} {
1558 puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"
1567 set randkey
[expr int
(rand
()*10000)]
1568 set randval
[expr int
(rand
()*10000)]
1569 set randidx0
[expr int
(rand
()*10)]
1570 set randidx1
[expr int
(rand
()*10)]
1571 set cmd
[expr int
(rand
()*20)]
1573 if {$cmd == 0} {$r set $randkey $randval}
1574 if {$cmd == 1} {$r get
$randkey}
1575 if {$cmd == 2} {$r incr $randkey}
1576 if {$cmd == 3} {$r lpush
$randkey $randval}
1577 if {$cmd == 4} {$r rpop
$randkey}
1578 if {$cmd == 5} {$r del
$randkey}
1579 if {$cmd == 6} {$r llen
$randkey}
1580 if {$cmd == 7} {$r lrange $randkey $randidx0 $randidx1}
1581 if {$cmd == 8} {$r ltrim
$randkey $randidx0 $randidx1}
1582 if {$cmd == 9} {$r lindex $randkey $randidx0}
1583 if {$cmd == 10} {$r lset $randkey $randidx0 $randval}
1584 if {$cmd == 11} {$r sadd
$randkey $randval}
1585 if {$cmd == 12} {$r srem
$randkey $randval}
1586 if {$cmd == 13} {$r smove
$randkey $randval}
1587 if {$cmd == 14} {$r scard
$randkey}
1588 if {$cmd == 15} {$r expire
$randkey [expr $randval%60]}
1596 # Set a few configuration defaults
1597 set ::host 127.0.0.1
1605 for {set j
0} {$j < [llength $argv]} {incr j
} {
1606 set opt
[lindex $argv $j]
1607 set arg
[lindex $argv [expr $j+1]]
1608 set lastarg
[expr {$arg eq
{}}]
1609 if {$opt eq
{-h} && !$lastarg} {
1612 } elseif
{$opt eq
{-p} && !$lastarg} {
1615 } elseif
{$opt eq
{-stress}} {
1617 } elseif
{$opt eq
{--flush}} {
1619 } elseif
{$opt eq
{--first} && !$lastarg} {
1622 } elseif
{$opt eq
{--last} && !$lastarg} {
1626 puts "Wrong argument: $opt"
1631 # Before to run the test check if DB 9 and DB 10 are empty
1639 set db9size
[$r dbsize
]
1641 set db10size
[$r dbsize
]
1642 if {$db9size != 0 ||
$db10size != 0} {
1643 puts "Can't run the tests against DB 9 and 10: DBs are not empty."
1654 main
$::host $::port