You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2014/10/09 00:58:28 UTC

[5/5] git commit: Start of AmqpJmsTextMessageFacadeTest

Start of AmqpJmsTextMessageFacadeTest

Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/5d6fc111
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/5d6fc111
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/5d6fc111

Branch: refs/heads/master
Commit: 5d6fc111fb5676c580f185ee859fcb7520d389ff
Parents: 3780502
Author: Timothy Bish <ta...@gmail.com>
Authored: Wed Oct 8 18:54:49 2014 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Wed Oct 8 18:54:49 2014 -0400

----------------------------------------------------------------------
 .../message/AmqpJmsTextMessageFacadeTest.java   | 129 +++++++++++++++++++
 1 file changed, 129 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/5d6fc111/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsTextMessageFacadeTest.java
----------------------------------------------------------------------
diff --git a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsTextMessageFacadeTest.java b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsTextMessageFacadeTest.java
new file mode 100644
index 0000000..3fbe30e
--- /dev/null
+++ b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpJmsTextMessageFacadeTest.java
@@ -0,0 +1,129 @@
+/**
+ * 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.
+ */
+package org.apache.qpid.jms.provider.amqp.message;
+
+import static org.apache.qpid.jms.provider.amqp.message.AmqpMessageSupport.JMS_MSG_TYPE;
+import static org.apache.qpid.jms.provider.amqp.message.AmqpMessageSupport.JMS_TEXT_MESSAGE;
+import static org.apache.qpid.jms.provider.amqp.message.AmqpMessageSupport.getSymbol;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import java.util.Map;
+
+import org.apache.qpid.proton.amqp.Symbol;
+import org.apache.qpid.proton.amqp.messaging.AmqpValue;
+import org.apache.qpid.proton.amqp.messaging.MessageAnnotations;
+import org.apache.qpid.proton.message.Message;
+import org.junit.Test;
+
+/**
+ * Tests for class AmqpJmsTextMessageFacade
+ */
+public class AmqpJmsTextMessageFacadeTest extends AmqpJmsMessageTypesTestCase {
+
+    //---------- Test initial state of newly created message -----------------//
+
+    @Test
+    public void testNewMessageToSendContainsMessageTypeAnnotation() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+
+        Message protonMessage = amqpTextMessageFacade.getAmqpMessage();
+        MessageAnnotations annotations = protonMessage.getMessageAnnotations();
+        Map<Symbol, Object> annotationsMap = annotations.getValue();
+
+        assertNotNull("MessageAnnotations section was not present", annotations);
+        assertNotNull("MessageAnnotations section value was not present", annotationsMap);
+
+        assertTrue("expected message type annotation to be present", annotationsMap.containsKey(AmqpMessageSupport.getSymbol(JMS_MSG_TYPE)));
+        assertEquals("unexpected value for message type annotation value", JMS_TEXT_MESSAGE, annotationsMap.get(getSymbol(JMS_MSG_TYPE)));
+        assertEquals(JMS_TEXT_MESSAGE, amqpTextMessageFacade.getJmsMsgType());
+    }
+
+    @Test
+    public void testNewMessageToSendClearBodyDoesNotFail() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+        amqpTextMessageFacade.clearBody();
+    }
+
+    @Test
+    public void testNewMessageToSendReportsIsEmpty() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+        amqpTextMessageFacade.clearBody();
+        assertTrue(amqpTextMessageFacade.isEmpty());
+    }
+
+    @Test
+    public void testNewMessageToSendReturnsNullText() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+        amqpTextMessageFacade.clearBody();
+        assertNull(amqpTextMessageFacade.getText());
+    }
+
+    // ---------- test for normal message operations -------------------------//
+
+    @Test
+    public void testMessageClearBodyWorks() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+        assertTrue(amqpTextMessageFacade.isEmpty());
+        amqpTextMessageFacade.setText("SomeTextForMe");
+        assertFalse(amqpTextMessageFacade.isEmpty());
+        amqpTextMessageFacade.clearBody();
+        assertTrue(amqpTextMessageFacade.isEmpty());
+    }
+
+    @Test
+    public void testMessageCopy() throws Exception {
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createNewTextMessageFacade();
+        amqpTextMessageFacade.setText("SomeTextForMe");
+
+        AmqpJmsTextMessageFacade copy = amqpTextMessageFacade.copy();
+        assertEquals("SomeTextForMe", copy.getText());
+    }
+
+    // ---------- test handling of received messages -------------------------//
+
+    @Test
+    public void testCreateWithEmptyAmqpValue() throws Exception {
+        Message message = Message.Factory.create();
+        message.setBody(new AmqpValue(null));
+
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createReceivedTextMessageFacade(createMockAmqpConsumer(), message);
+
+        // Should be able to use the message, e.g clearing it and adding to it.
+        amqpTextMessageFacade.clearBody();
+        amqpTextMessageFacade.setText("TEST");
+        assertEquals("TEST", amqpTextMessageFacade.getText());
+    }
+
+    @Test
+    public void testCreateWithNonEmptyAmqpValue() throws Exception {
+        Message message = Message.Factory.create();
+        message.setBody(new AmqpValue("TEST"));
+
+        AmqpJmsTextMessageFacade amqpTextMessageFacade = createReceivedTextMessageFacade(createMockAmqpConsumer(), message);
+
+        assertEquals("TEST", amqpTextMessageFacade.getText());
+
+        // Should be able to use the message, e.g clearing it and adding to it.
+        amqpTextMessageFacade.clearBody();
+        amqpTextMessageFacade.setText("TEST-CLEARED");
+        assertEquals("TEST-CLEARED", amqpTextMessageFacade.getText());
+    }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org