mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
ctdb-tests: Update ctdb stub LVS tests and add some new ones
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
parent
3af858e6f4
commit
75cf99b9da
@ -2,9 +2,8 @@
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all ok"
|
||||
define_test "3 nodes, no LVS, all ok"
|
||||
|
||||
# This isn't very useful, since the stub for capabilities does set LVS :-)
|
||||
required_result 0 <<EOF
|
||||
EOF
|
||||
|
||||
|
29
ctdb/tests/tool/stubby.lvs.002.sh
Executable file
29
ctdb/tests/tool/stubby.lvs.002.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, all ok"
|
||||
|
||||
required_result 0 <<EOF
|
||||
0:192.168.20.41
|
||||
1:192.168.20.42
|
||||
2:192.168.20.43
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x0 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x0 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
28
ctdb/tests/tool/stubby.lvs.003.sh
Executable file
28
ctdb/tests/tool/stubby.lvs.003.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, some LVS, all ok"
|
||||
|
||||
required_result 0 <<EOF
|
||||
0:192.168.20.41
|
||||
2:192.168.20.43
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
@ -2,9 +2,8 @@
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all ok"
|
||||
define_test "3 nodes, no LVS, all ok"
|
||||
|
||||
# This isn't very useful, since the stub for capabilities doesn't set LVS :-)
|
||||
required_result 255 <<EOF
|
||||
There is no LVS master
|
||||
EOF
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
define_test "3 nodes, current disconnected"
|
||||
|
||||
# This isn't very useful, since the stub for capabilities doesn't set LVS :-)
|
||||
required_result 10 <<EOF
|
||||
DATE TIME [PID]: Unable to get nodemap from local node
|
||||
EOF
|
||||
|
27
ctdb/tests/tool/stubby.lvsmaster.003.sh
Executable file
27
ctdb/tests/tool/stubby.lvsmaster.003.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, all ok"
|
||||
|
||||
required_result 0 <<EOF
|
||||
Node 0 is LVS master
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x0 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x0 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
27
ctdb/tests/tool/stubby.lvsmaster.004.sh
Executable file
27
ctdb/tests/tool/stubby.lvsmaster.004.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, node 0 unhealthy"
|
||||
|
||||
required_result 0 <<EOF
|
||||
Node 1 is LVS master
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x2 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x0 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x0 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
27
ctdb/tests/tool/stubby.lvsmaster.005.sh
Executable file
27
ctdb/tests/tool/stubby.lvsmaster.005.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, all unhealthy"
|
||||
|
||||
required_result 0 <<EOF
|
||||
Node 0 is LVS master
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x2 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x2 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x2 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
27
ctdb/tests/tool/stubby.lvsmaster.006.sh
Executable file
27
ctdb/tests/tool/stubby.lvsmaster.006.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, nodes 0,1 disabled, node 2 unhealthy"
|
||||
|
||||
required_result 0 <<EOF
|
||||
Node 2 is LVS master
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x4 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x4 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x2 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
27
ctdb/tests/tool/stubby.lvsmaster.007.sh
Executable file
27
ctdb/tests/tool/stubby.lvsmaster.007.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "3 nodes, all LVS, all nodes disabled"
|
||||
|
||||
required_result 255 <<EOF
|
||||
There is no LVS master
|
||||
EOF
|
||||
|
||||
simple_test <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x4 CURRENT RECMASTER CTDB_CAP_LVS
|
||||
1 192.168.20.42 0x4 CTDB_CAP_LVS
|
||||
2 192.168.20.43 0x4 CTDB_CAP_LVS
|
||||
|
||||
IFACES
|
||||
:Name:LinkStatus:References:
|
||||
:eth2:1:2:
|
||||
:eth1:1:4:
|
||||
|
||||
VNNMAP
|
||||
654321
|
||||
0
|
||||
1
|
||||
2
|
||||
EOF
|
Loading…
x
Reference in New Issue
Block a user