You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/03/14 01:01:42 UTC

svn commit: r517943 - in /activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire: OpenwireTempDestinationTest.cpp OpenwireTempDestinationTest.h

Author: tabish
Date: Tue Mar 13 17:01:41 2007
New Revision: 517943

URL: http://svn.apache.org/viewvc?view=rev&rev=517943
Log:
http://issues.apache.org/activemq/browse/AMQCPP-84

Added:
    activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp   (with props)
    activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h   (with props)

Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp?view=auto&rev=517943
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp (added)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp Tue Mar 13 17:01:41 2007
@@ -0,0 +1,191 @@
+/*
+ * 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 "OpenwireTempDestinationTest.h"
+
+#include <integration/IntegrationCommon.h>
+
+CPPUNIT_TEST_SUITE_REGISTRATION( integration::connector::openwire::OpenwireTempDestinationTest );
+
+#include <activemq/concurrent/Thread.h>
+#include <activemq/concurrent/Mutex.h>
+#include <activemq/connector/stomp/StompConnector.h>
+#include <activemq/util/SimpleProperties.h>
+#include <activemq/transport/TransportFactory.h>
+#include <activemq/util/Guid.h>
+#include <activemq/util/SimpleProperties.h>
+#include <activemq/util/StringTokenizer.h>
+#include <activemq/connector/ConnectorFactoryMap.h>
+#include <activemq/network/SocketFactory.h>
+#include <activemq/transport/TransportFactory.h>
+#include <activemq/network/Socket.h>
+#include <activemq/exceptions/NullPointerException.h>
+#include <activemq/core/ActiveMQConnection.h>
+#include <activemq/core/ActiveMQConsumer.h>
+#include <activemq/core/ActiveMQProducer.h>
+#include <activemq/util/StringTokenizer.h>
+#include <activemq/util/Boolean.h>
+
+#include <cms/Connection.h>
+#include <cms/MessageConsumer.h>
+#include <cms/MessageProducer.h>
+#include <cms/MessageListener.h>
+#include <cms/Startable.h>
+#include <cms/Closeable.h>
+#include <cms/MessageListener.h>
+#include <cms/ExceptionListener.h>
+#include <cms/Topic.h>
+#include <cms/Queue.h>
+#include <cms/TemporaryTopic.h>
+#include <cms/TemporaryQueue.h>
+#include <cms/Session.h>
+#include <cms/BytesMessage.h>
+#include <cms/TextMessage.h>
+#include <cms/MapMessage.h>
+
+using namespace activemq::transport;
+using namespace activemq::util;
+using namespace std;
+using namespace cms;
+using namespace activemq;
+using namespace activemq::core;
+using namespace activemq::util;
+using namespace activemq::connector;
+using namespace activemq::exceptions;
+using namespace activemq::network;
+using namespace activemq::transport;
+using namespace activemq::concurrent;
+
+using namespace integration;
+using namespace integration::connector;
+using namespace integration::connector::openwire;
+
+///////////////////////////////////////////////////////////////////////////////
+OpenwireTempDestinationTest::OpenwireTempDestinationTest()
+  : testSupport( "tcp://127.0.0.1:61616?wireFormat=openwire" )
+{
+    testSupport.initialize();
+}
+
+///////////////////////////////////////////////////////////////////////////////
+OpenwireTempDestinationTest::~OpenwireTempDestinationTest()
+{}
+
+///////////////////////////////////////////////////////////////////////////////
+void OpenwireTempDestinationTest::test()
+{
+    try
+    {
+        if( IntegrationCommon::debug ) {
+            cout << "Starting activemqcms Temp Destination test (sending "
+                 << IntegrationCommon::defaultMsgCount
+                 << " messages per type and sleeping "
+                 << IntegrationCommon::defaultDelay
+                << " milli-seconds) ...\n"
+                << endl;
+        }
+
+        // Create CMS Object for Comms
+        cms::Session* session = testSupport.getSession();
+
+        cms::Destination* requestTopic = session->createTopic( "myRequestTopic" );
+        cms::Destination* responseTopic = session->createTemporaryTopic();
+
+        Consumer* requestConsumer = new Consumer( testSupport.getConnection(),
+                                                  session,
+                                                  requestTopic );
+        Consumer* responseConsumer = new Consumer( testSupport.getConnection(),
+                                                   session,
+                                                   responseTopic );
+
+        cms::MessageProducer* producer =
+            session->createProducer( requestTopic );
+
+        delete producer;
+        delete requestConsumer;
+        delete responseConsumer;
+
+        delete requestTopic;
+        delete responseTopic;
+    }
+    AMQ_CATCH_RETHROW( ActiveMQException )
+    AMQ_CATCHALL_THROW( ActiveMQException )
+}
+
+///////////////////////////////////////////////////////////////////////////////
+OpenwireTempDestinationTest::Consumer::Consumer(
+    cms::Connection* connection,
+    cms::Session* session,
+    cms::Destination* destination )
+{
+    this->connection = connection;
+    this->destination = destination;
+    this->session = session;
+    this->consumer = NULL;
+    this->numReceived = 0;
+}
+
+///////////////////////////////////////////////////////////////////////////////
+OpenwireTempDestinationTest::Consumer::~Consumer() {
+    delete consumer;
+}
+
+///////////////////////////////////////////////////////////////////////////////
+void OpenwireTempDestinationTest::Consumer::stop() {
+
+    try {
+
+        // singal the thread to quit
+        synchronized( &mutex ) {
+            mutex.notifyAll();
+        }
+
+    } catch( CMSException& e ) {
+        e.printStackTrace();
+    }
+}
+
+///////////////////////////////////////////////////////////////////////////////
+void OpenwireTempDestinationTest::Consumer::run() {
+
+    try {
+
+        consumer = session->createConsumer( destination );
+
+        consumer->setMessageListener( this );
+
+        // Sleep while asynchronous messages come in.
+        synchronized( &mutex ) {
+            mutex.wait();
+        }
+
+    } catch( CMSException& e ) {
+        e.printStackTrace();
+    }
+}
+
+///////////////////////////////////////////////////////////////////////////////
+void OpenwireTempDestinationTest::Consumer::onMessage(
+    const Message* message ) {
+
+    try
+    {
+        numReceived++;
+    } catch( CMSException& e ) {
+        e.printStackTrace();
+    }
+}

Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Added: activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h?view=auto&rev=517943
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h (added)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h Tue Mar 13 17:01:41 2007
@@ -0,0 +1,84 @@
+/*
+ * 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.
+ */
+
+#ifndef _INTEGRATION_CONNECTOR_OPENWIRE_OPENWIRETEMPDESTINATIONTEST_H_
+#define _INTEGRATION_CONNECTOR_OPENWIRE_OPENWIRETEMPDESTINATIONTEST_H_
+
+#include <activemq/concurrent/Mutex.h>
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+#include <integration/TestSupport.h>
+
+namespace integration{
+namespace connector{
+namespace openwire{
+
+    class OpenwireTempDestinationTest : public CppUnit::TestFixture {
+
+        CPPUNIT_TEST_SUITE( OpenwireTempDestinationTest );
+        CPPUNIT_TEST( test );
+        CPPUNIT_TEST_SUITE_END();
+
+    private:
+
+        TestSupport testSupport;
+
+    public:
+
+        OpenwireTempDestinationTest();
+        virtual ~OpenwireTempDestinationTest();
+
+        virtual void test();
+
+    protected:
+
+        class Consumer : public cms::MessageListener,
+                         public activemq::concurrent::Runnable {
+
+        private:
+
+            cms::Connection* connection;
+            cms::Session* session;
+            cms::Destination* destination;
+            cms::MessageConsumer* consumer;
+            int numReceived;
+            activemq::concurrent::Mutex mutex;
+
+        public:
+
+            Consumer( cms::Connection* connection,
+                      cms::Session* session,
+                      cms::Destination* destination );
+
+            virtual ~Consumer();
+
+            virtual int getNumReceived() const {
+                return this->numReceived;
+            }
+
+            virtual void stop();
+            virtual void run();
+            virtual void onMessage( const cms::Message* message );
+        };
+
+    };
+
+}}}
+
+#endif /*_INTEGRATION_CONNECTOR_OPENWIRE_OPENWIRETEMPDESTINATIONTEST_H_*/

Propchange: activemq/activemq-cpp/trunk/activemq-cpp/src/test-integration/integration/connector/openwire/OpenwireTempDestinationTest.h
------------------------------------------------------------------------------
    svn:eol-style = native