blob: 2835e55cd97b76b88d2c34903d89f2824a900c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/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
|