summaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/netconf-executor
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-04-09 15:50:59 +0000
committerGerrit Code Review <gerrit@onap.org>2019-04-09 15:50:59 +0000
commitbe54e7823892359818a90abbb2476052d0e1ae84 (patch)
tree0207eb4db7e0b0f4fafdbf51be1119796bf6d295 /ms/blueprintsprocessor/functions/netconf-executor
parent98c19126d087014e68ab4aa4081f57345337b0d9 (diff)
parent14d95c69733c1ba95537cd326dbfa7a8dcf5d300 (diff)
Merge "netconf-executor: adding pojo tests"
Diffstat (limited to 'ms/blueprintsprocessor/functions/netconf-executor')
-rw-r--r--ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt37
-rw-r--r--ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt65
2 files changed, 102 insertions, 0 deletions
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
index 000000000..d46ee78dd
--- /dev/null
+++ b/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt
@@ -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
index 000000000..70bf0158d
--- /dev/null
+++ b/ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt
@@ -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