mirror of
https://github.com/samba-team/samba.git
synced 2025-01-31 01:48:16 +03:00
8b24cae630
* 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>
49 lines
1.0 KiB
Bash
Executable File
49 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Verify that 'ctdb ip' shows the correct output
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
set -e
|
|
|
|
ctdb_test_init
|
|
|
|
echo "Getting list of public IPs..."
|
|
try_command_on_node -v 1 "$CTDB ip all | tail -n +2"
|
|
ips=$(sed \
|
|
-e 's@ node\[@ @' \
|
|
-e 's@\].*$@@' \
|
|
"$outfile")
|
|
machineout=$(sed -r \
|
|
-e 's@^| |$@\|@g' \
|
|
-e 's@[[:alpha:]]+\[@@g' \
|
|
-e 's@\]@@g' \
|
|
"$outfile")
|
|
|
|
if ctdb_test_on_cluster ; then
|
|
while read ip pnn ; do
|
|
try_command_on_node $pnn "ip addr show to ${ip}"
|
|
if [ -n "$out" ] ; then
|
|
echo "GOOD: node $pnn appears to have $ip assigned"
|
|
else
|
|
die "BAD: node $pnn does not appear to have $ip assigned"
|
|
fi
|
|
done <<<"$ips" # bashism to avoid problem setting variable in pipeline.
|
|
fi
|
|
|
|
echo "Looks good!"
|
|
|
|
cmd="$CTDB -X ip 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"
|
|
exit 1
|
|
fi
|