CommonHeader unit tests 39/36239/4
authorJakub Dudycz <jakub.dudycz@nokia.com>
Fri, 16 Mar 2018 14:32:32 +0000 (15:32 +0100)
committerTakamune Cho <tc012c@att.com>
Sat, 17 Mar 2018 12:37:45 +0000 (12:37 +0000)
Improved code coverage.

Change-Id: Ic215cbd9ab6999f8e1d51c2f4d79d0d550057f04
Issue-ID: APPC-745
Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/model/CommonHeaderTest.java [new file with mode: 0644]

diff --git a/appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/model/CommonHeaderTest.java b/appc-event-listener/appc-event-listener-bundle/src/test/java/org/onap/appc/listener/LCM/model/CommonHeaderTest.java
new file mode 100644 (file)
index 0000000..ea822f8
--- /dev/null
@@ -0,0 +1,92 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Copyright (C) 2018 Nokia Solutions and Networks
+ * =============================================================================
+ * Licensed 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.
+ * 
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.appc.listener.LCM.model;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+
+import java.util.HashMap;
+import java.util.Map;
+import org.junit.Before;
+import org.junit.Test;
+
+public class CommonHeaderTest {
+
+    private CommonHeader commonHeader;
+
+    @Before
+    public void setup() {
+        commonHeader = new CommonHeader();
+    }
+
+    @Test
+    public void should_set_properties() {
+
+        commonHeader.setTimeStamp("test-timestamp");
+        commonHeader.setApiVer("test-api-version");
+        commonHeader.setOriginatorId("test-originator-id");
+        commonHeader.setRequestID("test-request-id");
+        commonHeader.setSubRequestId("test-subrequest-id");
+
+        Map<String, String> flags = new HashMap<>();
+        flags.put("key1", "flag1");
+        flags.put("key2", "flag2");
+        flags.put("key3", "flag3");
+
+        commonHeader.setFlags(flags);
+
+        assertEquals("test-timestamp", commonHeader.getTimeStamp());
+        assertEquals("test-api-version", commonHeader.getApiVer());
+        assertEquals("test-originator-id", commonHeader.getOriginatorId());
+        assertEquals("test-request-id", commonHeader.getRequestID());
+        assertEquals("test-subrequest-id", commonHeader.getSubRequestId());
+        assertEquals(flags, commonHeader.getFlags());
+    }
+
+    @Test
+    public void should_initialize_parameters_from_constructor() {
+
+        commonHeader.setTimeStamp("test-timestamp");
+        commonHeader.setApiVer("test-api-version");
+        commonHeader.setOriginatorId("test-originator-id");
+        commonHeader.setRequestID("test-request-id");
+        commonHeader.setSubRequestId("test-subrequest-id");
+
+        Map<String, String> flags = new HashMap<>();
+        flags.put("key1", "flag1");
+        flags.put("key2", "flag2");
+        flags.put("key3", "flag3");
+
+        commonHeader.setFlags(flags);
+
+        CommonHeader testObject = new CommonHeader(commonHeader);
+
+        assertNotEquals(commonHeader.getTimeStamp(), testObject.getTimeStamp());
+        assertEquals(commonHeader.getApiVer(), testObject.getApiVer());
+        assertEquals(commonHeader.getOriginatorId(), testObject.getOriginatorId());
+        assertEquals(commonHeader.getRequestID(), testObject.getRequestID());
+        assertEquals(commonHeader.getSubRequestId(), testObject.getSubRequestId());
+        assertEquals(commonHeader.getFlags(), testObject.getFlags());
+    }
+}