mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
3cdc0cb708
$TEST_WRAP to $CTDB_TEST_WRAPPER - value now set using $CTDB_TEST_REMOTE_SCRIPTS_DIR if that is set. Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit a69545d7dec78eefb85a1598e5db4667cc210bf9)
56 lines
1.1 KiB
Bash
Executable File
56 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify that 'ctdb getvar' works correctly.
|
|
|
|
Expands on the steps below as it actually checks the values of all
|
|
variables listed by 'ctdb listvars'.
|
|
|
|
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 getvars <varname>' with a valid variable name (possibly
|
|
obtained via 'ctdb listvars'.
|
|
3. Verify that the command displays the correct value of the variable
|
|
(corroborate with the value shown by 'ctdb listvars'.
|
|
|
|
Expected results:
|
|
|
|
* 'ctdb getvar' shows the correct value of the variable.
|
|
EOF
|
|
}
|
|
|
|
. ctdb_test_functions.bash
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
set -e
|
|
|
|
onnode 0 $CTDB_TEST_WRAPPER cluster_is_healthy
|
|
|
|
try_command_on_node 0 "ctdb listvars"
|
|
|
|
echo "Veryifying all variable values using \"ctdb getvar\"..."
|
|
|
|
echo "$out" |
|
|
while read var x val ; do
|
|
try_command_on_node 0 "ctdb getvar $var"
|
|
|
|
val2=$(echo $out | sed -e 's@.*[[:space:]]@@')
|
|
|
|
if [ "$val" != "$val2" ] ; then
|
|
echo "MISMATCH on $var: $val != $val2"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
testfailures=$?
|
|
|
|
ctdb_test_exit
|