Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
ctdb-tests: Add new public IP takeover no-op test
Browse files Browse the repository at this point in the history
Test with DisableIPFailover=1 and with no public IP addresses
configured.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12254

Signed-off-by: Martin Schwenke <[email protected]>
Reviewed-by: Amitay Isaacs <[email protected]>

Autobuild-User(master): Martin Schwenke <[email protected]>
Autobuild-Date(master): Wed Sep 14 12:30:30 CEST 2016 on sn-devel-144
  • Loading branch information
martin-schwenke authored and Martin Schwenke committed Sep 14, 2016
1 parent 3adf9ca commit 9f6015f
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions ctdb/tests/simple/19_ip_takeover_noop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#!/bin/bash

test_info()
{
cat <<EOF
Check that CTDB operates correctly if:
* DisableIPFailover is set; or
* there are 0 public IPs configured
This test only does anything with local daemons. On a real cluster it
has no way of updating configuration.
EOF
}

. "${TEST_SCRIPTS_DIR}/integration.bash"

ctdb_test_init "$@"

set -e

cluster_is_healthy

if [ -z "$TEST_LOCAL_DAEMONS" ] ; then
echo "SKIPPING this test - only runs against local daemons"
exit 0
fi

# Reset configuration
ctdb_restart_when_done

select_test_node_and_ips

echo "Setting DisableIPFailover=1 on all nodes"
try_command_on_node all $CTDB setvar DisableIPFailover 1

echo "Getting \"before\" IP allocation..."
try_command_on_node -v any $CTDB ip all
before="$out"

echo "Disabling node ${test_node}..."
try_command_on_node "$test_node" $CTDB disable
wait_until_node_has_status $test_node disabled

echo "Getting \"after\" IP allocation..."
try_command_on_node -v any $CTDB ip all
after="$out"

if [ "$before" == "$after" ] ; then
echo "GOOD: IP allocation is unchanged"
echo
else
die "BAD: IP allocation changed"
fi

echo "----------------------------------------"

daemons_stop

echo "Starting CTDB with an empty public addresses configuration..."
CTDB_PUBLIC_ADDRESSES="/dev/null" daemons_start

wait_until_ready

echo "Trying explicit ipreallocate..."
try_command_on_node any $CTDB ipreallocate

echo "Good, that seems to work!"
echo

ps_ctdbd

0 comments on commit 9f6015f

Please sign in to comment.