netconf-executor: adding pojo tests 91/84691/1
authorOleg Mitsura <oleg.mitsura@amdocs.com>
Tue, 9 Apr 2019 14:12:50 +0000 (10:12 -0400)
committerOleg Mitsura <oleg.mitsura@amdocs.com>
Tue, 9 Apr 2019 14:14:01 +0000 (10:14 -0400)
Issue-ID: CCSDK-1126

Change-Id: Id98f437cbdb04dac445afb7c6c6089664366ac1f
Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com>
ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt [new file with mode: 0644]
ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt [new file with mode: 0644]

diff --git a/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt b/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt
new file mode 100644 (file)
index 0000000..d46ee78
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright © 2019 Bell Canada
+ *
+ * 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.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.api
+
+
+import org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.api.DeviceInfo
+import org.junit.Test
+import kotlin.test.assertEquals
+
+class DeviceInfoTest {
+    @Test
+    fun testToString() {
+
+       val di: DeviceInfo = DeviceInfo().apply {
+           username = "username"
+           password = "password"
+           ipAddress = "localhost"
+           port = 2224
+           connectTimeout = 10
+       }
+        assertEquals("localhost:2224", di.toString())
+    }
+}
\ No newline at end of file
diff --git a/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt b/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt
new file mode 100644 (file)
index 0000000..70bf015
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * Copyright © 2019 Bell Canada
+ *
+ * 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.
+ */
+
+package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.api
+
+import org.junit.Assert.assertFalse
+import org.junit.Assert.assertTrue
+import org.junit.Test
+import org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.utils.RpcStatus
+
+class NetconfMessageTest {
+    @Test
+    fun testSuccessfulDeviceResponse() {
+        val dr: DeviceResponse = genSuccessfulEmptyDeviceResponse()
+        assertTrue(dr.isSuccess())
+
+        val dr2: DeviceResponse = genSuccessfulEmptyDeviceResponse()
+        dr2.errorMessage = "some error msg"
+        assertFalse(dr2.isSuccess())
+    }
+
+    @Test
+    fun testUnsuccessfulDeviceResponse() {
+        val dr: DeviceResponse = genUnsuccessfulEmptyDeviceResponse()
+        assertFalse(dr.isSuccess())
+
+        //case 2: Success, but with error message
+        val dr2: DeviceResponse = genUnsuccessfulEmptyDeviceResponse()
+        dr2.errorMessage = "Some error message."
+        assertFalse(dr2.isSuccess())
+    }
+
+    //helper function to generate a device response
+    private fun genSuccessfulEmptyDeviceResponse(): DeviceResponse {
+        return DeviceResponse().apply {
+            status = RpcStatus.SUCCESS
+            errorMessage = ""
+            responseMessage = ""
+            requestMessage = ""
+        }
+    }
+
+    private fun genUnsuccessfulEmptyDeviceResponse(): DeviceResponse {
+        return DeviceResponse().apply {
+            status = RpcStatus.FAILURE
+            errorMessage = ""
+            responseMessage = ""
+            requestMessage = ""
+        }
+    }
+
+}
\ No newline at end of file