diff options
author | Alan Conway <aconway@apache.org> | 2007-07-05 16:08:29 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-07-05 16:08:29 +0000 |
commit | 0865408d7fa16f913391ed9391fb13268a74d8a1 (patch) | |
tree | 3107946aae1031a960bc68921a33c9708c8bea53 /cpp/src/tests/Uuid.cpp | |
parent | 4e60e87b604f8959907a329a36264f98debc9536 (diff) | |
download | qpid-python-0865408d7fa16f913391ed9391fb13268a74d8a1.tar.gz |
* src/qpid/cluster/SessionFrame.cpp, .h: Wrap AMQFrame with
session UUID and direction.
* src/qpid/cluster/Cluster.cpp, .h: Use SessionFrame.
* src/qpid/framing/AMQFrame.h, .cpp: Added setBody(), inline getBody()
* src/qpid/framing/Uuid.h, .cpp: Clean up constructors, inline.
* src/qpid/framing/Buffer.h: Put/get byte*, size_T.
* src/qpid/cluster/SessionManager.cpp, .h:
- Maintain the session map.
- Handle frames from cluster, dispatch to proper channels.
- Implement HandlerUpdater for new channels and maintains
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@553543 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Uuid.cpp')
-rw-r--r-- | cpp/src/tests/Uuid.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/tests/Uuid.cpp b/cpp/src/tests/Uuid.cpp index 43d1cbcbba..da8c94aeae 100644 --- a/cpp/src/tests/Uuid.cpp +++ b/cpp/src/tests/Uuid.cpp @@ -37,6 +37,7 @@ struct UniqueSet : public std::set<Uuid> { BOOST_AUTO_TEST_CASE(testUuidCtor) { // Uniqueness boost::array<Uuid,1000> uuids; + for_each(uuids.begin(), uuids.end(), mem_fun_ref(&Uuid::generate)); UniqueSet unique; for_each(uuids.begin(), uuids.end(), unique); } @@ -62,10 +63,11 @@ BOOST_AUTO_TEST_CASE(testUuidOstream) { BOOST_AUTO_TEST_CASE(testUuidEncodeDecode) { Buffer buf(Uuid::size()); - Uuid uuid; + Uuid uuid(sample.c_array()); uuid.encode(buf); buf.flip(); Uuid decoded; decoded.decode(buf); - BOOST_CHECK(uuid==decoded); + BOOST_CHECK_EQUAL(string(sample.begin(), sample.end()), + string(decoded.begin(), decoded.end())); } |