diff options
author | Ted Ross <tross@apache.org> | 2008-10-08 15:49:27 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2008-10-08 15:49:27 +0000 |
commit | 251fc8cdea1e5f6ad76b0264a0e59c146a9e50b6 (patch) | |
tree | 3d3b32b3ffd9ed54fb8c32716b713d7598fea245 /cpp/src/tests/ManagementTest.cpp | |
parent | ebd5adf5d232164080ee666f7a8e22e204582981 (diff) | |
download | qpid-python-251fc8cdea1e5f6ad76b0264a0e59c146a9e50b6.tar.gz |
Added serialize/deserialize for ObjectId
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@702913 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ManagementTest.cpp')
-rw-r--r-- | cpp/src/tests/ManagementTest.cpp | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/cpp/src/tests/ManagementTest.cpp b/cpp/src/tests/ManagementTest.cpp new file mode 100644 index 0000000000..5ec3453b7c --- /dev/null +++ b/cpp/src/tests/ManagementTest.cpp @@ -0,0 +1,74 @@ +/* + * + * 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 "unit_test.h" + +QPID_AUTO_TEST_SUITE(ManagementTestSuite) + +using namespace qpid::framing; +using namespace qpid::management; + +QPID_AUTO_TEST_CASE(testObjectIdSerialize) { + 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(testObjectIdEncode) { + char buffer[100]; + Buffer msgBuf(buffer, 100); + msgBuf.putLongLong(0x1002000030000004LL); + msgBuf.putLongLong(0x0000000000000005LL); + msgBuf.reset(); + + ObjectId oid(msgBuf); + + std::stringstream out1; + out1 << oid; + + BOOST_CHECK_EQUAL(out1.str(), "1-2-3-4-5"); +} + +QPID_AUTO_TEST_CASE(testObjectIdAttach) { + AgentAttachment agent; + ObjectId oid(&agent, 10, 20, 50); + + std::stringstream out1; + out1 << oid; + BOOST_CHECK_EQUAL(out1.str(), "10-20-0-0-50"); + + agent.setBanks(30, 40); + std::stringstream out2; + out2 << oid; + BOOST_CHECK_EQUAL(out2.str(), "10-20-30-40-50"); +} + +QPID_AUTO_TEST_SUITE_END() + + |