Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
5fca35da
Commit
5fca35da
authored
May 31, 2011
by
antirez
Browse files
disabled development test entry, tests moved in the right place
parent
d260b9a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
tests/test_helper.tcl
View file @
5fca35da
...
@@ -108,7 +108,7 @@ proc cleanup {} {
...
@@ -108,7 +108,7 @@ proc cleanup {} {
}
}
proc execute_everything
{}
{
proc execute_everything
{}
{
if
1
{
if
0
{
# Use this when hacking on new tests.
# Use this when hacking on new tests.
set ::verbose 1
set ::verbose 1
execute_tests
"unit/first"
execute_tests
"unit/first"
...
...
tests/unit/type/zset.tcl
View file @
5fca35da
...
@@ -48,6 +48,34 @@ start_server {tags {"zset"}} {
...
@@ -48,6 +48,34 @@ start_server {tags {"zset"}} {
assert_error
"*NaN*"
{
r zincrby myzset -inf abc
}
assert_error
"*NaN*"
{
r zincrby myzset -inf abc
}
}
}
test
{
ZADD - Variadic version base case
}
{
r del myzset
list
[
r zadd myzset 10 a 20 b 30 c
]
[
r zrange myzset 0 -1 withscores
]
}
{
3
{
a 10 b 20 c 30
}}
test
{
ZADD - Return value is the number of actually added items
}
{
list
[
r zadd myzset 5 x 20 b 30 c
]
[
r zrange myzset 0 -1 withscores
]
}
{
1
{
x 5 a 10 b 20 c 30
}}
test
{
ZADD - Variadic version does not add nothing on single parsing err
}
{
r del myzset
catch
{
r zadd myzset 10 a 20 b 30.badscore c
}
e
assert_match
{
*ERR*not*double*
}
$e
r exists myzset
}
{
0
}
test
{
ZADD - Variadic version will raise error on missing arg
}
{
r del myzset
catch
{
r zadd myzset 10 a 20 b 30 c 40
}
e
assert_match
{
*ERR*syntax*
}
$e
}
test
{
ZINCRBY does not work variadic even if shares ZADD implementation
}
{
r del myzset
catch
{
r zincrby myzset 10 a 20 b 30 c
}
e
assert_match
{
*ERR*wrong*number*arg*
}
$e
}
test
"ZCARD basics -
$encoding
"
{
test
"ZCARD basics -
$encoding
"
{
assert_equal 3
[
r zcard ztmp
]
assert_equal 3
[
r zcard ztmp
]
assert_equal 0
[
r zcard zdoesntexist
]
assert_equal 0
[
r zcard zdoesntexist
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment