1
0
mirror of https://github.com/fluencelabs/redis synced 2025-04-03 00:01:04 +00:00

Sentinel test: kill masters instead of using DEBUG SLEEP in all tests.

This commit is contained in:
antirez 2014-02-25 14:33:44 +01:00
parent a2c76ffb1c
commit fef88681f2
2 changed files with 12 additions and 5 deletions
tests/sentinel-tests

@ -6,7 +6,7 @@ test "Basic failover works if the master is down" {
set old_port [RI $master_id tcp_port] set old_port [RI $master_id tcp_port]
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
assert {[lindex $addr 1] == $old_port} assert {[lindex $addr 1] == $old_port}
R $master_id debug sleep 10 kill_instance redis $master_id
foreach_sentinel_id id { foreach_sentinel_id id {
wait_for_condition 100 50 { wait_for_condition 100 50 {
[lindex [S $id SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] 1] != $old_port [lindex [S $id SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] 1] != $old_port
@ -14,6 +14,7 @@ test "Basic failover works if the master is down" {
fail "At least one Sentinel did not received failover info" fail "At least one Sentinel did not received failover info"
} }
} }
restart_instance redis $master_id
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
set master_id [get_instance_id_by_port redis [lindex $addr 1]] set master_id [get_instance_id_by_port redis [lindex $addr 1]]
} }
@ -49,11 +50,12 @@ test "ODOWN is not possible without N (quorum) Sentinels reports" {
set old_port [RI $master_id tcp_port] set old_port [RI $master_id tcp_port]
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
assert {[lindex $addr 1] == $old_port} assert {[lindex $addr 1] == $old_port}
R $master_id debug sleep 10 kill_instance redis $master_id
# Make sure failover did not happened. # Make sure failover did not happened.
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
assert {[lindex $addr 1] == $old_port} assert {[lindex $addr 1] == $old_port}
restart_instance redis $master_id
} }
test "Failover is not possible without majority agreement" { test "Failover is not possible without majority agreement" {
@ -66,11 +68,13 @@ test "Failover is not possible without majority agreement" {
kill_instance sentinel $id kill_instance sentinel $id
} }
R $master_id debug sleep 10 # Kill the current master
kill_instance redis $master_id
# Make sure failover did not happened. # Make sure failover did not happened.
set addr [S $quorum SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S $quorum SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
assert {[lindex $addr 1] == $old_port} assert {[lindex $addr 1] == $old_port}
restart_instance redis $master_id
# Cleanup: restart Sentinels to monitor the master. # Cleanup: restart Sentinels to monitor the master.
for {set id 0} {$id < $quorum} {incr id} { for {set id 0} {$id < $quorum} {incr id} {
@ -92,7 +96,8 @@ test "Failover works if we configure for absolute agreement" {
} }
} }
R $master_id debug sleep 10 kill_instance redis $master_id
foreach_sentinel_id id { foreach_sentinel_id id {
wait_for_condition 1000 50 { wait_for_condition 1000 50 {
[lindex [S $id SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] 1] != $old_port [lindex [S $id SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] 1] != $old_port
@ -100,6 +105,7 @@ test "Failover works if we configure for absolute agreement" {
fail "At least one Sentinel did not received failover info" fail "At least one Sentinel did not received failover info"
} }
} }
restart_instance redis $master_id
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
set master_id [get_instance_id_by_port redis [lindex $addr 1]] set master_id [get_instance_id_by_port redis [lindex $addr 1]]

@ -10,7 +10,7 @@ test "We can failover with Sentinel 1 crashed" {
# Crash Sentinel 1 # Crash Sentinel 1
kill_instance sentinel 1 kill_instance sentinel 1
R $master_id debug sleep 10 kill_instance redis $master_id
foreach_sentinel_id id { foreach_sentinel_id id {
if {$id != 1} { if {$id != 1} {
wait_for_condition 1000 50 { wait_for_condition 1000 50 {
@ -20,6 +20,7 @@ test "We can failover with Sentinel 1 crashed" {
} }
} }
} }
restart_instance redis $master_id
set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster]
set master_id [get_instance_id_by_port redis [lindex $addr 1]] set master_id [get_instance_id_by_port redis [lindex $addr 1]]
} }