mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
96b3517356
cluster_is_healthy() is now run locally in tests and internally causes _cluster_is_healthy() to be run on node 0. When it detects that the cluster is unhealthy and $ctdb_test_restart_scheduled is not true, debug information is printed. This replaces the previous use of $CTDB_TEST_CLEANING_UP. To avoid spurious debug on expected restarts, added scheduled restarts to several tests. Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit ee7caae3a55a64fb50cd28fa2fd4663c5dd83b4f)
72 lines
1.7 KiB
Bash
Executable File
72 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify the operation of 'ctdb disable'.
|
|
|
|
This is a superficial test of the 'ctdb disable' command. It trusts
|
|
information from CTDB that indicates that the IP failover has happened
|
|
correctly. Another test should check that the failover has actually
|
|
happened at the networking level.
|
|
|
|
Prerequisites:
|
|
|
|
* An active CTDB cluster with at least 2 active nodes.
|
|
|
|
Steps:
|
|
|
|
1. Verify that the status on all of the ctdb nodes is 'OK'.
|
|
2. Disable one of the nodes using 'ctdb disable -n <node>'.
|
|
3. Verify that the status of the node changes to 'disabled'.
|
|
4. Verify that the IP addreses served by the disabled node are failed
|
|
over to other nodes.
|
|
|
|
Expected results:
|
|
|
|
* The status of the disabled node changes as expected and IP addresses
|
|
failover as expected.
|
|
EOF
|
|
}
|
|
|
|
. ctdb_test_functions.bash
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
set -e
|
|
|
|
cluster_is_healthy
|
|
|
|
# Reset configuration
|
|
ctdb_restart_when_done
|
|
|
|
echo "Getting list of public IPs..."
|
|
try_command_on_node 0 "$CTDB ip -n all | sed -e '1d'"
|
|
|
|
# When selecting test_node we just want a node that has public IPs.
|
|
# This will work and is economically semi-randomly. :-)
|
|
read x test_node <<<"$out"
|
|
|
|
ips=""
|
|
while read ip pnn ; do
|
|
if [ "$pnn" = "$test_node" ] ; then
|
|
ips="${ips}${ips:+ }${ip}"
|
|
fi
|
|
done <<<"$out" # bashism to avoid problem setting variable in pipeline.
|
|
|
|
echo "Selected node ${test_node} with IPs: $ips"
|
|
|
|
echo "Disabling node $test_node"
|
|
|
|
try_command_on_node 1 $CTDB disable -n $test_node
|
|
|
|
# Avoid a potential race condition...
|
|
onnode 0 $CTDB_TEST_WRAPPER wait_until_node_has_status $test_node disabled
|
|
|
|
if wait_until_ips_are_on_nodeglob "[!${test_node}]" $ips ; then
|
|
echo "All IPs moved."
|
|
else
|
|
echo "Some IPs didn't move."
|
|
testfailures=1
|
|
fi
|