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 2014/04/01 21:19:44 UTC

svn commit: r1583757 - /activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs

Author: tabish
Date: Tue Apr  1 19:19:44 2014
New Revision: 1583757

URL: http://svn.apache.org/r1583757
Log:
https://issues.apache.org/jira/browse/AMQNET-454

add patch: https://issues.apache.org/jira/secure/attachment/12638110/Apache.NMS.AMQP-23a-MessageDeliveryTest.cs.patch

Added:
    activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs   (with props)

Added: activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs?rev=1583757&view=auto
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs (added)
+++ activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs Tue Apr  1 19:19:44 2014
@@ -0,0 +1,80 @@
+/*
+ * 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.
+ */
+
+using System;
+using System.Threading;
+using Apache.NMS;
+using Apache.NMS.Policies;
+using Apache.NMS.Util;
+using Apache.NMS.Amqp;
+using Apache.NMS.Test;
+using NUnit.Framework;
+
+namespace Apache.NMS.Amqp.Test
+{
+    [TestFixture]
+    public class MessageDeliveryTest : NMSTestSupport
+    {
+        private Uri uri = new Uri(NMSTestSupport.ReplaceEnvVar("amqp:localhost:5672"));
+        private IConnectionFactory factory;
+        private Connection connection;
+        private ISession session;
+        private IDestination destination;
+        private IMessageProducer producer;
+        private IMessageConsumer consumer;
+
+        [SetUp]
+        public override void SetUp()
+        {
+            factory = new NMSConnectionFactory(uri);
+            this.connection = (Connection) factory.CreateConnection();
+            session = connection.CreateSession();
+            destination = SessionUtil.GetDestination(session, "my-dest; {create:always}");
+            producer = session.CreateProducer(destination);
+            consumer = session.CreateConsumer(destination);
+        }
+
+        [TearDown]
+        public override void TearDown()
+        {
+            this.session = null;
+
+            if(this.connection != null)
+            {
+                this.connection.Close();
+                this.connection = null;
+            }
+
+            base.TearDown();
+        }
+
+
+        [Test]
+        public void TestMessageDelivery()
+        {
+            connection.Start();
+
+            IMessage message = session.CreateTextMessage("Test Message");
+            producer.Send(message);
+
+            IMessage resultMessage = consumer.Receive();
+
+            AssertEquals(message, resultMessage);
+        }
+
+    }
+}

Propchange: activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/test/csharp/MessageDeliveryTest.cs
------------------------------------------------------------------------------
    svn:eol-style = native