Skip to content

Commit

Permalink
solve races in replication lpop tests (redis#13445)
Browse files Browse the repository at this point in the history
* some tests didn't wait for replication offset sync
* tests that used deferring client, didn't wait for it to get blocked.
an in some cases, the replication offset sync ended before the deferring
client finished, so the digest match failed.
* some tests used deferring clients excessively
* the tests didn't read the client response
* the tests didn't close the client (fd leak)
  • Loading branch information
oranagra committed Jul 25, 2024
1 parent d0c64d7 commit e74550d
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions tests/integration/replication.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -110,24 +110,23 @@ start_server {tags {"repl external:skip"}} {
$A config resetstat
set rd [redis_deferring_client]
$rd brpoplpush a b 5
wait_for_blocked_client
r lpush a foo
wait_for_condition 50 100 {
[$A debug digest] eq [$B debug digest]
} else {
fail "Master and replica have different digest: [$A debug digest] VS [$B debug digest]"
}
wait_for_ofs_sync $B $A
assert_equal [$A debug digest] [$B debug digest]
assert_match {*calls=1,*} [cmdrstat rpoplpush $A]
assert_match {} [cmdrstat lmove $A]
assert_equal [$rd read] {foo}
$rd close
}

test {BRPOPLPUSH replication, list exists} {
$A config resetstat
set rd [redis_deferring_client]
r lpush c 1
r lpush c 2
r lpush c 3
$rd brpoplpush c d 5
after 1000
assert_equal [r brpoplpush c d 5] {1}
wait_for_ofs_sync $B $A
assert_equal [$A debug digest] [$B debug digest]
assert_match {*calls=1,*} [cmdrstat rpoplpush $A]
assert_match {} [cmdrstat lmove $A]
Expand All @@ -139,24 +138,24 @@ start_server {tags {"repl external:skip"}} {
$A config resetstat
set rd [redis_deferring_client]
$rd blmove a b $wherefrom $whereto 5
$rd flush
wait_for_blocked_client
r lpush a foo
wait_for_condition 50 100 {
[$A debug digest] eq [$B debug digest]
} else {
fail "Master and replica have different digest: [$A debug digest] VS [$B debug digest]"
}
wait_for_ofs_sync $B $A
assert_equal [$A debug digest] [$B debug digest]
assert_match {*calls=1,*} [cmdrstat lmove $A]
assert_match {} [cmdrstat rpoplpush $A]
assert_equal [$rd read] {foo}
$rd close
}

test "BLMOVE ($wherefrom, $whereto) replication, list exists" {
$A config resetstat
set rd [redis_deferring_client]
r lpush c 1
r lpush c 2
r lpush c 3
$rd blmove c d $wherefrom $whereto 5
after 1000
r blmove c d $wherefrom $whereto 5
wait_for_ofs_sync $B $A
assert_equal [$A debug digest] [$B debug digest]
assert_match {*calls=1,*} [cmdrstat lmove $A]
assert_match {} [cmdrstat rpoplpush $A]
Expand All @@ -167,6 +166,7 @@ start_server {tags {"repl external:skip"}} {
test {BLPOP followed by role change, issue #2473} {
set rd [redis_deferring_client]
$rd blpop foo 0 ; # Block while B is a master
wait_for_blocked_client

# Turn B into master of A
$A slaveof no one
Expand All @@ -182,7 +182,7 @@ start_server {tags {"repl external:skip"}} {
# If the client is still attached to the instance, we'll get
# a desync between the two instances.
$A rpush foo a b c
after 100
wait_for_ofs_sync $B $A

wait_for_condition 50 100 {
[$A debug digest] eq [$B debug digest] &&
Expand All @@ -192,6 +192,9 @@ start_server {tags {"repl external:skip"}} {
fail "Master and replica have different digest: [$A debug digest] VS [$B debug digest]"
}
assert_match {*calls=1,*,rejected_calls=0,failed_calls=1*} [cmdrstat blpop $B]

assert_error {UNBLOCKED*} {$rd read}
$rd close
}
}
}
Expand Down

0 comments on commit e74550d

Please sign in to comment.