mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
ctdb-tests: Add some extra tests for "ctdb nodestatus"
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12802 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Martin Schwenke <martins@samba.org> Autobuild-Date(master): Fri May 26 05:24:34 CEST 2017 on sn-devel-144
This commit is contained in:
parent
1d10c8e9e6
commit
ade535371b
33
ctdb/tests/tool/ctdb.nodestatus.003.sh
Executable file
33
ctdb/tests/tool/ctdb.nodestatus.003.sh
Executable file
@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "all, 3 nodes, 1 unhealthy"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x2
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0 CURRENT RECMASTER
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
EOF
|
||||
|
||||
required_result 2 <<EOF
|
||||
Number of nodes:3
|
||||
pnn:0 192.168.20.41 UNHEALTHY
|
||||
pnn:1 192.168.20.42 OK
|
||||
pnn:2 192.168.20.43 OK (THIS NODE)
|
||||
EOF
|
||||
simple_test all
|
||||
|
||||
required_result 2 <<EOF
|
||||
|Node|IP|Disconnected|Banned|Disabled|Unhealthy|Stopped|Inactive|PartiallyOnline|ThisNode|
|
||||
|0|192.168.20.41|0|0|0|1|0|0|0|N|
|
||||
|1|192.168.20.42|0|0|0|0|0|0|0|N|
|
||||
|2|192.168.20.43|0|0|0|0|0|0|0|Y|
|
||||
EOF
|
||||
simple_test -X all
|
28
ctdb/tests/tool/ctdb.nodestatus.004.sh
Executable file
28
ctdb/tests/tool/ctdb.nodestatus.004.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "current, 3 nodes, node 0 unhealthy"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x2
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0 CURRENT RECMASTER
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
EOF
|
||||
|
||||
required_result 0 <<EOF
|
||||
pnn:2 192.168.20.43 OK (THIS NODE)
|
||||
EOF
|
||||
simple_test
|
||||
|
||||
required_result 0 <<EOF
|
||||
|Node|IP|Disconnected|Banned|Disabled|Unhealthy|Stopped|Inactive|PartiallyOnline|ThisNode|
|
||||
|2|192.168.20.43|0|0|0|0|0|0|0|Y|
|
||||
EOF
|
||||
simple_test -X
|
28
ctdb/tests/tool/ctdb.nodestatus.005.sh
Executable file
28
ctdb/tests/tool/ctdb.nodestatus.005.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "current, 3 nodes, node 0 unhealthy, query node 0"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x2
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0 CURRENT RECMASTER
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
EOF
|
||||
|
||||
required_result 2 <<EOF
|
||||
pnn:0 192.168.20.41 UNHEALTHY
|
||||
EOF
|
||||
simple_test 0
|
||||
|
||||
required_result 2 <<EOF
|
||||
|Node|IP|Disconnected|Banned|Disabled|Unhealthy|Stopped|Inactive|PartiallyOnline|ThisNode|
|
||||
|0|192.168.20.41|0|0|0|1|0|0|0|N|
|
||||
EOF
|
||||
simple_test -X 0
|
40
ctdb/tests/tool/ctdb.nodestatus.006.sh
Executable file
40
ctdb/tests/tool/ctdb.nodestatus.006.sh
Executable file
@ -0,0 +1,40 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "current, 3 nodes, node 0 disabled+stopped, various queries"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x24
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0 CURRENT RECMASTER
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
EOF
|
||||
|
||||
required_result 36 <<EOF
|
||||
pnn:0 192.168.20.41 DISABLED|STOPPED|INACTIVE
|
||||
EOF
|
||||
simple_test 0
|
||||
|
||||
required_result 36 <<EOF
|
||||
|Node|IP|Disconnected|Banned|Disabled|Unhealthy|Stopped|Inactive|PartiallyOnline|ThisNode|
|
||||
|0|192.168.20.41|0|0|1|0|1|1|0|N|
|
||||
EOF
|
||||
simple_test -X 0
|
||||
|
||||
required_result 36 <<EOF
|
||||
pnn:0 192.168.20.41 DISABLED|STOPPED|INACTIVE
|
||||
pnn:1 192.168.20.42 OK
|
||||
EOF
|
||||
simple_test 0,1
|
||||
|
||||
required_result 0 <<EOF
|
||||
pnn:1 192.168.20.42 OK
|
||||
pnn:2 192.168.20.43 OK (THIS NODE)
|
||||
EOF
|
||||
simple_test 1,2
|
Loading…
Reference in New Issue
Block a user