summaryrefslogtreecommitdiffstats
path: root/tests/cluster/tests/01-faildet.tcl
blob: 8fe87c91f48dda13b62b618c2771f2d8545444a5 (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
# Check the basic monitoring and failover capabilities.

source "../tests/includes/init-tests.tcl"

test "Create a 5 nodes cluster" {
    create_cluster 5 5
}

test "Cluster should start ok" {
    assert_cluster_state ok
}

test "Killing two slave nodes" {
    kill_instance redis 5
    kill_instance redis 6
}

test "Cluster should be still up" {
    assert_cluster_state ok
}

test "Killing one master node" {
    kill_instance redis 0
}

# Note: the only slave of instance 0 is already down so no
# failover is possible, that would change the state back to ok.
test "Cluster should be down now" {
    assert_cluster_state fail
}

test "Restarting master node" {
    restart_instance redis 0
}

test "Cluster should be up again" {
    assert_cluster_state ok
}