summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/cluster_test.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-08-29 18:18:45 +0000
committerAlan Conway <aconway@apache.org>2008-08-29 18:18:45 +0000
commitac1660c072fc1fc783731b7cd216861fc6999ac0 (patch)
tree5e401b8cd8e4c491cefa4e74b8185e2cfc032736 /qpid/cpp/src/tests/cluster_test.cpp
parent605ec8d6c0cfab3683fd962e42fbcd39b4b53db9 (diff)
downloadqpid-python-ac1660c072fc1fc783731b7cd216861fc6999ac0.tar.gz
Refactored cluster to intercept at ConnectionCode, using sys:: interfaces rather than boost functions.
Use framing::Operations and Invoker to dispatch cluster methods. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@690358 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/cluster_test.cpp')
-rw-r--r--qpid/cpp/src/tests/cluster_test.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/cluster_test.cpp b/qpid/cpp/src/tests/cluster_test.cpp
index 7140cc73bd..3f09143fff 100644
--- a/qpid/cpp/src/tests/cluster_test.cpp
+++ b/qpid/cpp/src/tests/cluster_test.cpp
@@ -69,8 +69,8 @@ struct ClusterFixture : public vector<uint16_t> {
void add();
void setup();
void kill(size_t n) {
- if (n) forkedBrokers[n-1]->stop();
- else broker0.shutdown();
+ if (n) forkedBrokers[n-1].kill();
+ else broker0->broker->shutdown();
}
};
@@ -139,6 +139,14 @@ QPID_AUTO_TEST_CASE(testForkedBroker) {
BOOST_CHECK_EQUAL("direct", c.session.exchangeQuery("amq.direct").getType());
}
+QPID_AUTO_TEST_CASE(testSingletonCluster) {
+ // Test against a singleton cluster, verify basic operation.
+ ClusterFixture cluster(1);
+ Client c(cluster[0]);
+ BOOST_CHECK(c.session.queueQuery("q").getQueue().empty());
+ BOOST_CHECK(c.session.exchangeQuery("ex").getType().empty());
+}
+
QPID_AUTO_TEST_CASE(testWiringReplication) {
ClusterFixture cluster(3);
Client c0(cluster[0]);