Repository: qpid-jms
Updated Branches:
  refs/heads/master 1c44f9402 -> c44975c6b


Add test for AmqpMessageSupport

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

Branch: refs/heads/master
Commit: c44975c6bae7fe5d2de0e6398abc05949e41dfed
Parents: 1c44f94
Author: Timothy Bish <tabish...@gmail.com>
Authored: Wed Oct 8 13:54:15 2014 -0400
Committer: Timothy Bish <tabish...@gmail.com>
Committed: Wed Oct 8 13:54:42 2014 -0400

----------------------------------------------------------------------
 .../amqp/message/AmqpMessageSupportTest.java    | 113 +++++++++++++++++++
 1 file changed, 113 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/c44975c6/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpMessageSupportTest.java
----------------------------------------------------------------------
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpMessageSupportTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpMessageSupportTest.java
new file mode 100644
index 0000000..4c74acb
--- /dev/null
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/amqp/message/AmqpMessageSupportTest.java
@@ -0,0 +1,113 @@
+/**
+ * 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.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.qpid.proton.Proton;
+import org.apache.qpid.proton.amqp.Symbol;
+import org.apache.qpid.proton.amqp.messaging.MessageAnnotations;
+import org.apache.qpid.proton.message.Message;
+import org.junit.Test;
+
+public class AmqpMessageSupportTest {
+
+    @Test
+    public void testCreate() {
+        new AmqpMessageSupport();
+    }
+
+    //---------- getSymbol 
---------------------------------------------------//
+
+    @Test
+    public void testGetSymbol() {
+        
assertNotNull(AmqpMessageSupport.getSymbol("x-opt-something-or-other"));
+    }
+
+    //---------- getMessageAnnotation 
----------------------------------------//
+
+    @Test
+    public void testGetMessageAnnotationWhenMessageHasAnnotationsMap() {
+        Map<Symbol, Object> messageAnnotationsMap = new 
HashMap<Symbol,Object>();
+        messageAnnotationsMap.put(Symbol.valueOf("x-opt-test"), Boolean.TRUE);
+        Message message = Proton.message();
+        message.setMessageAnnotations(new 
MessageAnnotations(messageAnnotationsMap));
+
+        assertNotNull(AmqpMessageSupport.getMessageAnnotation("x-opt-test", 
message));
+    }
+
+    @Test
+    public void testGetMessageAnnotationWhenMessageHasEmptyAnnotationsMap() {
+        Map<Symbol, Object> messageAnnotationsMap = new 
HashMap<Symbol,Object>();
+        Message message = Proton.message();
+        message.setMessageAnnotations(new 
MessageAnnotations(messageAnnotationsMap));
+
+        assertNull(AmqpMessageSupport.getMessageAnnotation("x-opt-test", 
message));
+    }
+
+    @Test
+    public void testGetMessageAnnotationWhenMessageHasNoAnnotationsMap() {
+        Message message = Proton.message();
+        assertNull(AmqpMessageSupport.getMessageAnnotation("x-opt-test", 
message));
+    }
+
+    @Test
+    public void testGetMessageAnnotationWhenMessageIsNull() {
+        assertNull(AmqpMessageSupport.getMessageAnnotation("x-opt-test", 
null));
+    }
+
+    //---------- isContentType 
-----------------------------------------------//
+
+    @Test
+    public void 
testIsContentTypeWithNullStringValueAndNullMessageContentType() {
+        Message message = Proton.message();
+        assertTrue(AmqpMessageSupport.isContentType(null, message));
+    }
+
+    @Test
+    public void 
testIsContentTypeWithNonNullStringValueAndNullMessageContentType() {
+        Message message = Proton.message();
+        assertFalse(AmqpMessageSupport.isContentType("test", message));
+    }
+
+    @Test
+    public void 
testIsContentTypeWithNonNullStringValueAndNonNullMessageContentTypeNotEqual() {
+        Message message = Proton.message();
+        message.setContentType("fails");
+        assertFalse(AmqpMessageSupport.isContentType("test", message));
+    }
+
+    @Test
+    public void 
testIsContentTypeWithNonNullStringValueAndNonNullMessageContentTypeEqual() {
+        Message message = Proton.message();
+        message.setContentType("test");
+        assertTrue(AmqpMessageSupport.isContentType("test", message));
+    }
+
+    @Test
+    public void 
testIsContentTypeWithNullStringValueAndNonNullMessageContentType() {
+        Message message = Proton.message();
+        message.setContentType("test");
+        assertFalse(AmqpMessageSupport.isContentType(null, message));
+    }
+}


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

Reply via email to