1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00
samba-mirror/ctdb/tests/simple/15_ctdb_statisticsreset.sh
Martin Schwenke 96b3517356 Test suite: better debug info when the cluster is unexpectedly unhealthy.
cluster_is_healthy() is now run locally in tests and internally causes
_cluster_is_healthy() to be run on node 0.  When it detects that the
cluster is unhealthy and $ctdb_test_restart_scheduled is not true,
debug information is printed.  This replaces the previous use of
$CTDB_TEST_CLEANING_UP.

To avoid spurious debug on expected restarts, added scheduled
restarts to several tests.

Signed-off-by: Martin Schwenke <martin@meltin.net>

(This used to be ctdb commit ee7caae3a55a64fb50cd28fa2fd4663c5dd83b4f)
2009-07-06 17:52:11 +10:00

84 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
test_info()
{
cat <<EOF
Verify that 'ctdb statisticsreset' works as expected.
This is pretty superficial. It just checks that a few particular
items reduce.
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 statisticsreset' on all nodes and verify that it executes
successfully.
Expected results:
* 'ctdb statisticsreset' executes successfully.
EOF
}
. ctdb_test_functions.bash
ctdb_test_init "$@"
set -e
cluster_is_healthy
try_command_on_node 0 "$CTDB listnodes | wc -l"
num_nodes="$out"
get_stat ()
{
local label="$1"
local out="$2"
echo "$out" | sed -rn -e "s@^[[:space:]]+${label}[[:space:]]+([[:digit:]])@\1@p" | head -1
}
check_reduced ()
{
local label="$1"
local before="$2"
local after="$3"
if [ $after -lt $before ] ; then
echo "GOOD: ${label} reduced from ${before} to ${after}"
else
echo "BAD: ${label} did not reduce from ${before} to ${after}"
testfailures=1
fi
}
n=0
while [ $n -lt $num_nodes ] ; do
echo "Getting initial statistics for node ${n}..."
try_command_on_node -v $n $CTDB statistics
before_req_control=$(get_stat "req_control" "$out")
before_reply_control=$(get_stat "reply_control" "$out")
before_node_packets_recv=$(get_stat "node_packets_recv" "$out")
try_command_on_node $n $CTDB statisticsreset
try_command_on_node -v $n $CTDB statistics
after_req_control=$(get_stat "req_control" "$out")
after_reply_control=$(get_stat "reply_control" "$out")
after_node_packets_recv=$(get_stat "node_packets_recv" "$out")
check_reduced "req_control" "$before_req_control" "$after_req_control"
check_reduced "reply_control" "$before_reply_control" "$after_reply_control"
check_reduced "node_packets_recv" "$before_node_packets_recv" "$after_node_packets_recv"
n=$(($n + 1))
done