blob: befa598d118463692da868d7eb40810f585537c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Check that the no-failover option works
source "../tests/includes/init-tests.tcl"
test "Create a 5 nodes cluster" {
create_cluster 5 5
}
test "Cluster is up" {
assert_cluster_state ok
}
test "Cluster is writable" {
cluster_write_test 0
}
test "Instance #5 is a slave" {
assert {[RI 5 role] eq {slave}}
# Configure it to never failover the master
R 5 CONFIG SET cluster-slave-no-failover yes
}
test "Instance #5 synced with the master" {
wait_for_condition 1000 50 {
[RI 5 master_link_status] eq {up}
} else {
fail "Instance #5 master link status is not up"
}
}
test "The nofailover flag is propagated" {
set slave5_id [dict get [get_myself 5] id]
foreach_redis_id id {
wait_for_condition 1000 50 {
[has_flag [get_node_by_id $id $slave5_id] nofailover]
} else {
fail "Instance $id can't see the nofailover flag of slave"
}
}
}
set current_epoch [CI 1 cluster_current_epoch]
test "Killing one master node" {
kill_instance redis 0
}
test "Cluster should be still down after some time" {
after 10000
assert_cluster_state fail
}
test "Instance #5 is still a slave" {
assert {[RI 5 role] eq {slave}}
}
test "Restarting the previously killed master node" {
restart_instance redis 0
}
|