/* * * 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 #include "qpid_test_plugin.h" #include "InProcessBroker.h" #include "qpid/client/Dispatcher.h" #include "qpid/client/Session.h" #include "qpid/framing/TransferContent.h" using namespace qpid::client; using namespace qpid::framing; struct DummyListener : public MessageListener { std::list messages; std::string name; uint expected; uint count; Dispatcher dispatcher; DummyListener(Session& session, const std::string& _name, uint _expected) : name(_name), expected(_expected), count(0), dispatcher(session) {} void listen() { dispatcher.listen(name, this, true, 1); dispatcher.run(); } void received(Message& msg) { messages.push_back(msg); if (++count == expected) { dispatcher.stop(); } } }; class ClientSessionTest : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(ClientSessionTest); CPPUNIT_TEST(testQueueQuery); CPPUNIT_TEST(testTransfer); CPPUNIT_TEST(testDispatcher); CPPUNIT_TEST(testSuspendResume); CPPUNIT_TEST(testSuspendResumeErrors); CPPUNIT_TEST_SUITE_END(); boost::shared_ptr broker; Connection connection; Session session; public: ClientSessionTest() : broker(new qpid::broker::InProcessBroker()), connection(broker) { connection.open(""); session = connection.newSession(); } void testQueueQuery() { std::string name("my-queue"); std::string alternate("amq.fanout"); session.queueDeclare((queue=name, alternateExchange=alternate, exclusive=true, autoDelete=true)); TypedResult result = session.queueQuery(name); CPPUNIT_ASSERT_EQUAL(false, result.get().getDurable()); CPPUNIT_ASSERT_EQUAL(true, result.get().getExclusive()); CPPUNIT_ASSERT_EQUAL(alternate, result.get().getAlternateExchange()); } void testTransfer() { std::string queueName("my-queue"); std::string dest("my-dest"); std::string data("my message"); session.queueDeclare_(queue=queueName, exclusive=true, autoDelete=true); //subcribe to the queue with confirm_mode = 1: session.messageSubscribe_(queue=queueName, destination=dest, acquireMode=1); session.messageFlow((destination=dest, unit=0, value=1));//messages session.messageFlow((destination=dest, unit=1, value=0xFFFFFFFF));//bytes //publish a message: TransferContent _content(data); _content.getDeliveryProperties().setRoutingKey("my-queue"); session.messageTransfer_(content=_content); //get & test the message: FrameSet::shared_ptr msg = session.get(); CPPUNIT_ASSERT(msg->isA()); CPPUNIT_ASSERT_EQUAL(data, msg->getContent()); //confirm receipt: session.execution().completed(msg->getId(), true, true); } void testDispatcher() { session.queueDeclare_(queue="my-queue", exclusive=true, autoDelete=true); TransferContent msg1("One"); msg1.getDeliveryProperties().setRoutingKey("my-queue"); session.messageTransfer_(content=msg1); TransferContent msg2("Two"); msg2.getDeliveryProperties().setRoutingKey("my-queue"); session.messageTransfer_(content=msg2); TransferContent msg3("Three"); msg3.getDeliveryProperties().setRoutingKey("my-queue"); session.messageTransfer_(content=msg3); session.messageSubscribe_(queue="my-queue", destination="my-dest", acquireMode=1); session.messageFlow((destination="my-dest", unit=0, value=1));//messages session.messageFlow((destination="my-dest", unit=1, value=0xFFFFFFFF));//bytes DummyListener listener(session, "my-dest", 3); listener.listen(); CPPUNIT_ASSERT_EQUAL((size_t) 3, listener.messages.size()); CPPUNIT_ASSERT_EQUAL(std::string("One"), listener.messages.front().getData()); listener.messages.pop_front(); CPPUNIT_ASSERT_EQUAL(std::string("Two"), listener.messages.front().getData()); listener.messages.pop_front(); CPPUNIT_ASSERT_EQUAL(std::string("Three"), listener.messages.front().getData()); listener.messages.pop_front(); } void testSuspendResume() { session = connection.newSession(60); session.suspend(); try { session.exchangeQuery_(name="amq.fanout"); CPPUNIT_FAIL("Expected session suspended exception"); } catch(...) {} connection.resume(session); session.exchangeQuery_(name="amq.fanout"); // FIXME aconway 2007-09-25: build up session state and confirm //it survives the resume } void testSuspendResumeErrors() { session.suspend(); // session has 0 timeout. try { session.exchangeQuery_(name="amq.fanout"); CPPUNIT_FAIL("Expected suspended session exception"); } catch(...) {} try { connection.resume(session); CPPUNIT_FAIL("Expected no such session exception."); } catch(...) {} } }; // Make this test suite a plugin. CPPUNIT_PLUGIN_IMPLEMENT(); CPPUNIT_TEST_SUITE_REGISTRATION(ClientSessionTest);