summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/simple/11_ctdb_ip.sh
blob: c1aec0e9bd7bc1923e7fe78d00721d2256cb0a6f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash

test_info()
{
    cat <<EOF
Verify that 'ctdb ip' shows the correct output.

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. Run 'ctdb ip' on one of the nodes and verify the list of IP
   addresses displayed (cross check the result with the output of
   'ip addr show' on the node).
3. Verify that colon-separated output is generated with the -Y option.

Expected results:

* 'ctdb ip' shows the list of public IPs being served by a node.
EOF
}

. "${TEST_SCRIPTS_DIR}/integration.bash"

ctdb_test_init "$@"

set -e

cluster_is_healthy

echo "Getting list of public IPs..."
try_command_on_node -v 1 "$CTDB ip -n all | tail -n +2"
ips=$(echo "$out" | sed \
	-e 's@ node\[@ @' \
	-e 's@\].*$@@')
machineout=$(echo "$out" | sed -r \
	-e 's@^| |$@:@g' \
	-e 's@[[:alpha:]]+\[@@g' \
	-e 's@\]@@g')

if [ -z "$TEST_LOCAL_DAEMONS" ]; then
    while read ip pnn ; do
        try_command_on_node $pnn "ip addr show"
        if [ "${out/inet ${ip}\/}" != "$out" ] ; then
            echo "GOOD: node $pnn appears to have $ip assigned"
        else
            echo "BAD:  node $pnn does not appear to have $ip assigned"
            testfailures=1
        fi
    done <<<"$ips" # bashism to avoid problem setting variable in pipeline.
fi

[ "$testfailures" != 1 ] && echo "Looks good!"

cmd="$CTDB -Y ip -n all | tail -n +2"
echo "Checking that \"$cmd\" produces expected output..."

try_command_on_node 1 "$cmd"
if [ "$out" = "$machineout" ] ; then
    echo "Yep, looks good!"
else
    echo "Nope, it looks like this:"
    echo "$out"
    echo "Should be like this:"
    echo "$machineout"
    testfailures=1
fi