blob: a58aa3bf11790fbd1758c7a32c48f75b22eb86ca (
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
|
#!/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
}
. "${TEST_SCRIPTS_DIR}/integration.bash"
ctdb_test_init "$@"
set -e
cluster_is_healthy
try_command_on_node -v 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="${out#*= }"
if [ "$val" != "$val2" ] ; then
echo "MISMATCH on $var: $val != $val2"
exit 1
fi
done
|