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
61e4ff2f
Commit
61e4ff2f
authored
Jun 03, 2010
by
Pieter Noordhuis
Browse files
cas test doesn't belong in 2.0.0
parent
a0ed0067
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/unit/cas.tcl
deleted
100644 → 0
View file @
a0ed0067
start_server
{
tags
{
"cas"
}}
{
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
}
test
{
FLUSHALL is able to touch the watched keys
}
{
r set x 30
r watch x
r flushall
r multi
r ping
r exec
}
{}
test
{
FLUSHALL does not touch non affected keys
}
{
r del x
r watch x
r flushall
r multi
r ping
r exec
}
{
PONG
}
test
{
FLUSHDB is able to touch the watched keys
}
{
r set x 30
r watch x
r flushdb
r multi
r ping
r exec
}
{}
test
{
FLUSHDB does not touch non affected keys
}
{
r del x
r watch x
r flushdb
r multi
r ping
r exec
}
{
PONG
}
test
{
WATCH is able to remember the DB a key belongs to
}
{
r select 5
r set x 30
r watch x
r select 1
r set x 10
r select 5
r multi
r ping
r exec
}
{
PONG
}
}
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