diff options
author | Martin Schwenke <martin@meltin.net> | 2013-05-06 20:31:08 +1000 |
---|---|---|
committer | Martin Schwenke <martin@meltin.net> | 2013-05-24 16:27:55 +1000 |
commit | c5bb401835cf752cecc0e6013f62e3ba2699bf3e (patch) | |
tree | 7697d17d9c508ceb1b63e851e558fdf1c33249a7 | |
parent | f35e9bba9bd4b568e51d49e342bc99d3d5caeeb1 (diff) | |
download | samba-c5bb401835cf752cecc0e6013f62e3ba2699bf3e.tar.gz samba-c5bb401835cf752cecc0e6013f62e3ba2699bf3e.tar.xz samba-c5bb401835cf752cecc0e6013f62e3ba2699bf3e.zip |
tests/takeover: New tests to check runstate handling
Signed-off-by: Martin Schwenke <martin@meltin.net>
(This used to be ctdb commit c57430998a3bdedc8a904eb3a9cdfde1421aff50)
-rwxr-xr-x | ctdb/tests/takeover/lcp2.024.sh | 42 | ||||
-rwxr-xr-x | ctdb/tests/takeover/lcp2.025.sh | 33 | ||||
-rwxr-xr-x | ctdb/tests/takeover/lcp2.026.sh | 33 |
3 files changed, 108 insertions, 0 deletions
diff --git a/ctdb/tests/takeover/lcp2.024.sh b/ctdb/tests/takeover/lcp2.024.sh new file mode 100755 index 00000000000..05095523ed5 --- /dev/null +++ b/ctdb/tests/takeover/lcp2.024.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +. "${TEST_SCRIPTS_DIR}/unit.sh" + +define_test "3 nodes, no IPs assigned, all healthy, all in STARTUP runstate" + +export CTDB_TEST_LOGLEVEL=2 + +required_result <<EOF +DATE TIME [PID]: Failed to find node to cover ip 192.168.21.254 +DATE TIME [PID]: Failed to find node to cover ip 192.168.21.253 +DATE TIME [PID]: Failed to find node to cover ip 192.168.21.252 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.254 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.253 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.252 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.251 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.250 +DATE TIME [PID]: Failed to find node to cover ip 192.168.20.249 +192.168.21.254 -1 +192.168.21.253 -1 +192.168.21.252 -1 +192.168.20.254 -1 +192.168.20.253 -1 +192.168.20.252 -1 +192.168.20.251 -1 +192.168.20.250 -1 +192.168.20.249 -1 +EOF + +export CTDB_TEST_RUNSTATE=4,4,4 + +simple_test 0,0,0 <<EOF +192.168.21.254 -1 +192.168.21.253 -1 +192.168.21.252 -1 +192.168.20.254 -1 +192.168.20.253 -1 +192.168.20.252 -1 +192.168.20.251 -1 +192.168.20.250 -1 +192.168.20.249 -1 +EOF diff --git a/ctdb/tests/takeover/lcp2.025.sh b/ctdb/tests/takeover/lcp2.025.sh new file mode 100755 index 00000000000..44b8583edc0 --- /dev/null +++ b/ctdb/tests/takeover/lcp2.025.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +. "${TEST_SCRIPTS_DIR}/unit.sh" + +define_test "3 nodes, no IPs assigned, all healthy, 1 in STARTUP runstate" + +export CTDB_TEST_LOGLEVEL=2 + +required_result <<EOF +192.168.21.254 1 +192.168.21.253 2 +192.168.21.252 1 +192.168.20.254 1 +192.168.20.253 2 +192.168.20.252 1 +192.168.20.251 1 +192.168.20.250 2 +192.168.20.249 2 +EOF + +export CTDB_TEST_RUNSTATE=4,5,5 + +simple_test 0,0,0 <<EOF +192.168.21.254 -1 +192.168.21.253 -1 +192.168.21.252 -1 +192.168.20.254 -1 +192.168.20.253 -1 +192.168.20.252 -1 +192.168.20.251 -1 +192.168.20.250 -1 +192.168.20.249 -1 +EOF diff --git a/ctdb/tests/takeover/lcp2.026.sh b/ctdb/tests/takeover/lcp2.026.sh new file mode 100755 index 00000000000..4c22ba56074 --- /dev/null +++ b/ctdb/tests/takeover/lcp2.026.sh @@ -0,0 +1,33 @@ +#!/bin/sh + +. "${TEST_SCRIPTS_DIR}/unit.sh" + +define_test "3 nodes, no IPs assigned, all unhealthy, 1 in STARTUP runstate" + +export CTDB_TEST_LOGLEVEL=2 + +required_result <<EOF +192.168.21.254 1 +192.168.21.253 2 +192.168.21.252 1 +192.168.20.254 1 +192.168.20.253 2 +192.168.20.252 1 +192.168.20.251 1 +192.168.20.250 2 +192.168.20.249 2 +EOF + +export CTDB_TEST_RUNSTATE=4,5,5 + +simple_test 2,2,2 <<EOF +192.168.21.254 -1 +192.168.21.253 -1 +192.168.21.252 -1 +192.168.20.254 -1 +192.168.20.253 -1 +192.168.20.252 -1 +192.168.20.251 -1 +192.168.20.250 -1 +192.168.20.249 -1 +EOF |