added TestExternalInterface.java 77/66077/2
authorSandeep J <sandeejh@in.ibm.com>
Wed, 12 Sep 2018 11:09:23 +0000 (16:39 +0530)
committerSandeep Jha <sandeejh@in.ibm.com>
Wed, 12 Sep 2018 11:13:00 +0000 (11:13 +0000)
added TestExternalInterface.java to test ExternalInterface.java.
Coverage increased from 0 to 100%.

Issue-ID: CCSDK-552
Change-Id: I99e206677ba890927e1bb036b88c85adada06116
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/persistence/entity/TestExternalInterface.java [new file with mode: 0644]

diff --git a/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/persistence/entity/TestExternalInterface.java b/ms/neng/src/test/java/org/onap/ccsdk/apps/ms/neng/persistence/entity/TestExternalInterface.java
new file mode 100644 (file)
index 0000000..26d2ef0
--- /dev/null
@@ -0,0 +1,97 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : CCSDK.apps
+ * ================================================================================
+ * Copyright (C) 2018 IBM. All rights reserved.
+ * ================================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.ccsdk.apps.ms.neng.persistence.entity;
+
+import java.sql.Timestamp;
+import java.text.DateFormat;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestExternalInterface {
+    private ExternalInterface externalInterface;
+
+    @Before
+    public void setUp() {
+        externalInterface = new ExternalInterface();
+    }
+
+    @Test
+    public void testGetSetExternalInteraceId() {
+        externalInterface.setExternalInteraceId(1);
+        Integer expected = 1;
+        Assert.assertEquals(expected, externalInterface.getExternalInteraceId());
+    }
+
+    @Test
+    public void testGetSetSystem() {
+        externalInterface.setSystem("testSystem");
+        Assert.assertEquals("testSystem", externalInterface.getSystem());
+    }
+
+    @Test
+    public void testGetSetParam() {
+        externalInterface.setParam("testParam");
+        Assert.assertEquals("testParam", externalInterface.getParam());
+    }
+
+    @Test
+    public void testGetSetUrlSuffix() {
+        externalInterface.setUrlSuffix("testUrlSuffix");
+        Assert.assertEquals("testUrlSuffix", externalInterface.getUrlSuffix());
+    }
+
+    @Test
+    public void testGetSetTimeStamp() throws ParseException {
+        DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
+        Date date = dateFormat.parse("23/09/2007");
+        long time = date.getTime();
+        Timestamp timeStamp = new Timestamp(time);
+        externalInterface.setCreatedTime(timeStamp);
+        Assert.assertEquals(timeStamp, externalInterface.getCreatedTime());
+    }
+
+    @Test
+    public void testGetSetCreatedBy() {
+        externalInterface.setCreatedBy("testUser");
+        Assert.assertEquals("testUser", externalInterface.getCreatedBy());
+    }
+
+    @Test
+    public void testGetSetLastUpdatedTime() throws ParseException {
+        DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
+        Date date = dateFormat.parse("23/09/2007");
+        long time = date.getTime();
+        Timestamp timeStamp = new Timestamp(time);
+        externalInterface.setLastUpdatedTime(timeStamp);
+        Assert.assertEquals(timeStamp, externalInterface.getLastUpdatedTime());
+    }
+
+    @Test
+    public void testGetSetLastUpdatedBy() {
+        externalInterface.setLastUpdatedBy("testUser");
+        Assert.assertEquals("testUser", externalInterface.getLastUpdatedBy());
+    }
+}