summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-08-05 16:24:25 +0000
committerAlan Conway <aconway@apache.org>2008-08-05 16:24:25 +0000
commitf8880f1998abced7322fa399d3a10694d711f14c (patch)
tree3eecf0a365b13f88de022b7f216a12935f6efa85 /qpid/cpp/src/tests
parent2f821d39bc528967fa2a7f55841f898e3e115c0a (diff)
downloadqpid-python-f8880f1998abced7322fa399d3a10694d711f14c.tar.gz
Fix sporadic shutdown hang in clustered broker.
Add start|stop_cluster test scripts git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@682774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests')
-rw-r--r--qpid/cpp/src/tests/cluster.mk2
-rwxr-xr-xqpid/cpp/src/tests/start_cluster23
-rwxr-xr-xqpid/cpp/src/tests/stop_cluster13
3 files changed, 37 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/cluster.mk b/qpid/cpp/src/tests/cluster.mk
index 9190eee4e5..8b83e927ec 100644
--- a/qpid/cpp/src/tests/cluster.mk
+++ b/qpid/cpp/src/tests/cluster.mk
@@ -12,7 +12,7 @@ lib_cluster = $(abs_builddir)/../libqpidcluster.la
# ais_check checks pre-requisites for cluster tests and runs them if ok.
TESTS+=ais_check
-EXTRA_DIST+=ais_check
+EXTRA_DIST+=ais_check start_cluster stop_cluster
check_PROGRAMS+=cluster_test
cluster_test_SOURCES=unit_test.cpp cluster_test.cpp
diff --git a/qpid/cpp/src/tests/start_cluster b/qpid/cpp/src/tests/start_cluster
new file mode 100755
index 0000000000..e399d213dc
--- /dev/null
+++ b/qpid/cpp/src/tests/start_cluster
@@ -0,0 +1,23 @@
+#!/bin/sh
+# Start a cluster of brokers on local host, put the list of ports for cluster members in cluster.ports
+#
+echo $1 | grep '^[0-9][0-9]*$' > /dev/null || { echo "Usage: $0 cluster-size [options]"; exit 1; }
+
+# Execute command with the ais group set.
+with_ais_group() {
+ id -nG | grep '\<ais\>' >/dev/null || { echo "You are not a member of the ais group."; exit 1; }
+ echo $* | newgrp ais
+}
+
+test -f cluster.ports && { echo "cluster.ports file already exists" ; exit 1; }
+rm -f cluster*.log
+SIZE=$1; shift
+CLUSTER=`pwd` # Cluster name=pwd, avoid clashes.
+
+for (( i=0; i<SIZE; ++i )); do
+ OPTS="--load-module ../.libs/libqpidcluster.so -dp0 --log-output=cluster$i.log --cluster-name=$CLUSTER --no-data-dir --auth=no $*"
+ PORT=`with_ais_group ../qpidd $OPTS` || exit 1
+ echo $PORT >> cluster.ports
+done
+
+
diff --git a/qpid/cpp/src/tests/stop_cluster b/qpid/cpp/src/tests/stop_cluster
new file mode 100755
index 0000000000..9bd05092de
--- /dev/null
+++ b/qpid/cpp/src/tests/stop_cluster
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Stop brokers on ports listed in cluster.ports
+
+PORTS=`cat cluster.ports`
+for PORT in $PORTS ; do
+ ../qpidd -qp $PORT || ERROR="$ERROR $PORT"
+done
+rm -f cluster.ports
+
+if [ -n "$ERROR" ]; then
+ echo "Errors stopping brokers on ports: $ERROR"
+ exit 1
+fi