mirror of
https://github.com/samba-team/samba.git
synced 2025-02-09 09:57:48 +03:00
* Use "#!/usr/bin/env bash" for improved portability * Drop test_info() definition and replace it with a comment The use of test_info() is pointless. * Drop call to cluster_is_healthy() This is a holdover from when the previous test would restart daemons to get things ready for a test. There was also a bug where going into recovery during the restart would sometimes cause the cluster to become unhealthy. If we really need something like this then we can add it to ctdb_test_init(). * Make order of preamble consistent Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Verify an error occurs if a ctdb command is run against a node
|
|
# without a ctdbd
|
|
|
|
# That is, check that an error message is printed if an attempt is made
|
|
# to execute a ctdb command against a node that is not running ctdbd.
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
set -e
|
|
|
|
ctdb_test_init
|
|
|
|
test_node=1
|
|
|
|
try_command_on_node 0 "$CTDB listnodes | wc -l"
|
|
num_nodes="$out"
|
|
echo "There are $num_nodes nodes."
|
|
|
|
echo "Shutting down node ${test_node}..."
|
|
try_command_on_node $test_node $CTDB shutdown
|
|
|
|
wait_until_node_has_status $test_node disconnected 30 0
|
|
|
|
wait_until_node_has_status 0 recovered 30 0
|
|
|
|
pat="ctdb_control error: 'ctdb_control to disconnected node'|ctdb_control error: 'node is disconnected'|Node $test_node is DISCONNECTED|Node $test_node has status DISCONNECTED\|UNHEALTHY\|INACTIVE"
|
|
|
|
for i in ip disable enable "ban 0" unban listvars ; do
|
|
try_command_on_node -v 0 ! $CTDB $i -n $test_node
|
|
|
|
if egrep -q "$pat" "$outfile" ; then
|
|
echo "OK: \"ctdb ${i}\" fails with expected \"disconnected node\" message"
|
|
else
|
|
echo "BAD: \"ctdb ${i}\" does not fail with expected \"disconnected node\" message"
|
|
exit 1
|
|
fi
|
|
done
|