summaryrefslogtreecommitdiff
path: root/cpp/src/tests/ManagementTest.cpp
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2011-05-27 15:44:23 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2011-05-27 15:44:23 +0000
commit66765100f4257159622cefe57bed50125a5ad017 (patch)
treea88ee23bb194eb91f0ebb2d9b23ff423e3ea8e37 /cpp/src/tests/ManagementTest.cpp
parent1aeaa7b16e5ce54f10c901d75c4d40f9f88b9db6 (diff)
parent88b98b2f4152ef59a671fad55a0d08338b6b78ca (diff)
downloadqpid-python-rajith_jms_client.tar.gz
Creating a branch for experimenting with some ideas for JMS client.rajith_jms_client
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/rajith_jms_client@1128369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ManagementTest.cpp')
-rw-r--r--cpp/src/tests/ManagementTest.cpp124
1 files changed, 0 insertions, 124 deletions
diff --git a/cpp/src/tests/ManagementTest.cpp b/cpp/src/tests/ManagementTest.cpp
deleted file mode 100644
index 8944c084c0..0000000000
--- a/cpp/src/tests/ManagementTest.cpp
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-
-#include "qpid/management/ManagementObject.h"
-#include "qpid/framing/Buffer.h"
-#include "qpid/console/ObjectId.h"
-#include "unit_test.h"
-
-namespace qpid {
-namespace tests {
-
-QPID_AUTO_TEST_SUITE(ManagementTestSuite)
-
-using namespace qpid::framing;
-using namespace qpid::management;
-
-QPID_AUTO_TEST_CASE(testObjectIdSerializeStream) {
- std::string text("0-10-4-2500-80000000000()");
- std::stringstream input(text);
-
- ObjectId oid(input);
-
- std::stringstream output;
- output << oid;
-
- BOOST_CHECK_EQUAL(text, output.str());
-}
-
-QPID_AUTO_TEST_CASE(testObjectIdSerializeString) {
- std::string text("0-10-4-2500-80000000000()");
-
- ObjectId oid(text);
-
- std::stringstream output;
- output << oid;
-
- BOOST_CHECK_EQUAL(text, output.str());
-}
-
-QPID_AUTO_TEST_CASE(testObjectIdEncode) {
- qpid::types::Variant::Map oidMap;
-
- ObjectId oid(1, 2, 3, 9999);
- oid.setV2Key("testkey");
- oid.setAgentName("myAgent");
-
- std::stringstream out1;
- out1 << oid;
-
- BOOST_CHECK_EQUAL(out1.str(), "1-2-3-myAgent-9999(testkey)");
-}
-
-QPID_AUTO_TEST_CASE(testObjectIdAttach) {
- AgentAttachment agent;
- ObjectId oid(&agent, 10, 20);
- oid.setV2Key("GabbaGabbaHey");
- oid.setAgentName("MrSmith");
-
- std::stringstream out1;
- out1 << oid;
-
- BOOST_CHECK_EQUAL(out1.str(), "10-20-0-MrSmith-0(GabbaGabbaHey)");
-
- agent.setBanks(30, 40);
- std::stringstream out2;
- out2 << oid;
-
- BOOST_CHECK_EQUAL(out2.str(), "10-20-30-MrSmith-0(GabbaGabbaHey)");
-}
-
-QPID_AUTO_TEST_CASE(testObjectIdCreate) {
- ObjectId oid("some-agent-name", "an-object-name");
-
- BOOST_CHECK_EQUAL(oid.getAgentName(), "some-agent-name");
- BOOST_CHECK_EQUAL(oid.getV2Key(), "an-object-name");
-}
-
-QPID_AUTO_TEST_CASE(testConsoleObjectId) {
- qpid::console::ObjectId oid1, oid2;
-
- oid1.setValue(1, 2);
- oid2.setValue(3, 4);
-
- BOOST_CHECK(oid1 < oid2);
- BOOST_CHECK(oid1 <= oid2);
- BOOST_CHECK(oid2 > oid1);
- BOOST_CHECK(oid2 >= oid1);
- BOOST_CHECK(oid1 != oid2);
- BOOST_CHECK(oid1 == oid1);
-
- oid1.setValue(3, 6);
- oid2.setValue(3, 4);
-
- BOOST_CHECK(oid1 > oid2);
- BOOST_CHECK(oid1 >= oid2);
- BOOST_CHECK(oid2 < oid1);
- BOOST_CHECK(oid2 <= oid1);
- BOOST_CHECK(oid1 != oid2);
-
- oid2.setValue(3, 6);
- BOOST_CHECK(oid1 == oid2);
-}
-
-QPID_AUTO_TEST_SUITE_END()
-
-}} // namespace qpid::tests