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
570bbcf8
Commit
570bbcf8
authored
Dec 12, 2011
by
antirez
Browse files
Added tests for AOF rewrite.
parent
38c06fa0
Changes
2
Hide whitespace changes
Inline
Side-by-side
tests/test_helper.tcl
View file @
570bbcf8
...
...
@@ -25,6 +25,7 @@ set ::all_tests {
unit/other
unit/cas
unit/quit
unit/aofrw
integration/replication
integration/replication-2
integration/replication-3
...
...
tests/unit/aofrw.tcl
0 → 100644
View file @
570bbcf8
start_server
{
tags
{
"aofrw"
}}
{
foreach d
{
string int
}
{
foreach e
{
ziplist linkedlist
}
{
test
"AOF rewrite of list with
$e
encoding,
$d
data"
{
r flushall
if
{
$e
eq
{
ziplist
}}
{
set len 10
}
else
{
set len 1000
}
for
{
set j 0
}
{
$j
< $len
}
{
incr j
}
{
if
{
$d
eq
{
string
}}
{
set data
[
randstring 0 16 alpha
]
}
else
{
set data
[
randomInt 4000000000
]
}
r lpush key $data
}
assert_equal
[
r object encoding key
]
$e
set d1
[
r debug digest
]
r bgrewriteaof
waitForBgrewriteaof r
r debug loadaof
set d2
[
r debug digest
]
if
{
$d1
ne $d2
}
{
error
"assertion:
$d1
is not equal to
$d2
"
}
}
}
}
foreach d
{
string int
}
{
foreach e
{
intset hashtable
}
{
test
"AOF rewrite of set with
$e
encoding,
$d
data"
{
r flushall
if
{
$e
eq
{
intset
}}
{
set len 10
}
else
{
set len 1000
}
for
{
set j 0
}
{
$j
< $len
}
{
incr j
}
{
if
{
$d
eq
{
string
}}
{
set data
[
randstring 0 16 alpha
]
}
else
{
set data
[
randomInt 4000000000
]
}
r sadd key $data
}
if
{
$d
ne
{
string
}}
{
assert_equal
[
r object encoding key
]
$e
}
set d1
[
r debug digest
]
r bgrewriteaof
waitForBgrewriteaof r
r debug loadaof
set d2
[
r debug digest
]
if
{
$d1
ne $d2
}
{
error
"assertion:
$d1
is not equal to
$d2
"
}
}
}
}
foreach d
{
string int
}
{
foreach e
{
zipmap hashtable
}
{
test
"AOF rewrite of hash with
$e
encoding,
$d
data"
{
r flushall
if
{
$e
eq
{
zipmap
}}
{
set len 10
}
else
{
set len 1000
}
for
{
set j 0
}
{
$j
< $len
}
{
incr j
}
{
if
{
$d
eq
{
string
}}
{
set data
[
randstring 0 16 alpha
]
}
else
{
set data
[
randomInt 4000000000
]
}
r hset key $data $data
}
assert_equal
[
r object encoding key
]
$e
set d1
[
r debug digest
]
r bgrewriteaof
waitForBgrewriteaof r
r debug loadaof
set d2
[
r debug digest
]
if
{
$d1
ne $d2
}
{
error
"assertion:
$d1
is not equal to
$d2
"
}
}
}
}
foreach d
{
string int
}
{
foreach e
{
ziplist skiplist
}
{
test
"AOF rewrite of zset with
$e
encoding,
$d
data"
{
r flushall
if
{
$e
eq
{
ziplist
}}
{
set len 10
}
else
{
set len 1000
}
for
{
set j 0
}
{
$j
< $len
}
{
incr j
}
{
if
{
$d
eq
{
string
}}
{
set data
[
randstring 0 16 alpha
]
}
else
{
set data
[
randomInt 4000000000
]
}
r zadd key
[
expr rand
()]
$data
}
assert_equal
[
r object encoding key
]
$e
set d1
[
r debug digest
]
r bgrewriteaof
waitForBgrewriteaof r
r debug loadaof
set d2
[
r debug digest
]
if
{
$d1
ne $d2
}
{
error
"assertion:
$d1
is not equal to
$d2
"
}
}
}
}
}
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