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
aa96ebec
Commit
aa96ebec
authored
Jul 03, 2011
by
Hampus Wessman
Committed by
antirez
Jul 15, 2011
Browse files
Add test for incorrect expiration when loading AOF.
parent
563f4cfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/integration/aof.tcl
View file @
aa96ebec
...
...
@@ -101,4 +101,22 @@ tags {"aof"} {
assert_equal 1
[
$client
scard set
]
}
}
## Test that EXPIREAT is loaded correctly
create_aof
{
append_to_aof
[
formatCommand rpush list foo
]
append_to_aof
[
formatCommand expireat list 1000
]
append_to_aof
[
formatCommand rpush list bar
]
}
start_server_aof
[
list dir $server_path
]
{
test
"AOF+EXPIRE: Server should have been started"
{
assert_equal 1
[
is_alive $srv
]
}
test
"AOF+EXPIRE: List should be empty"
{
set client
[
redis
[
dict get $srv host
]
[
dict get $srv port
]]
assert_equal 0
[
$client
llen list
]
}
}
}
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