Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
c20c189d
Commit
c20c189d
authored
May 25, 2010
by
antirez
Browse files
WATCH tests
parent
87c68815
Changes
2
Hide whitespace changes
Inline
Side-by-side
tests/test_helper.tcl
View file @
c20c189d
...
...
@@ -67,6 +67,7 @@ proc main {} {
execute_tests
"unit/sort"
execute_tests
"unit/expire"
execute_tests
"unit/other"
execute_tests
"unit/cas"
execute_tests
"integration/replication"
execute_tests
"integration/aof"
...
...
@@ -81,6 +82,7 @@ proc main {} {
execute_tests
"unit/sort"
execute_tests
"unit/expire"
execute_tests
"unit/other"
execute_tests
"unit/cas"
puts
"
\n
[
expr $::passed+$::failed
]
tests,
$::passed
passed,
$::failed
failed"
if
{
$::failed
> 0
}
{
...
...
tests/unit/cas.tcl
0 → 100644
View file @
c20c189d
start_server default.conf
{}
{
test
{
EXEC works on WATCHed key not modified
}
{
r watch x y z
r watch k
r multi
r ping
r exec
}
{
PONG
}
test
{
EXEC fail on WATCHed key modified
(
1 key of 1 watched
)}
{
r set x 30
r watch x
r set x 40
r multi
r ping
r exec
}
{}
test
{
EXEC fail on WATCHed key modified
(
1 key of 5 watched
)}
{
r set x 30
r watch a b x k z
r set x 40
r multi
r ping
r exec
}
{}
test
{
After successful EXEC key is no longer watched
}
{
r set x 30
r watch x
r multi
r ping
r exec
r set x 40
r multi
r ping
r exec
}
{
PONG
}
test
{
After failed EXEC key is no longer watched
}
{
r set x 30
r watch x
r set x 40
r multi
r ping
r exec
r set x 40
r multi
r ping
r exec
}
{
PONG
}
test
{
It is possible to UNWATCH
}
{
r set x 30
r watch x
r set x 40
r unwatch
r multi
r ping
r exec
}
{
PONG
}
test
{
UNWATCH when there is nothing watched works as expected
}
{
r unwatch
}
{
OK
}
}
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