Skip to content

Commit

Permalink
WATCH tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed May 25, 2010
1 parent 87c6881 commit c20c189
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_helper.tcl
Expand Up @@ -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"

Expand All @@ -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} {
Expand Down
66 changes: 66 additions & 0 deletions tests/unit/cas.tcl
@@ -0,0 +1,66 @@
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}
}

0 comments on commit c20c189

Please sign in to comment.