From 14d95c69733c1ba95537cd326dbfa7a8dcf5d300 Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Tue, 9 Apr 2019 10:12:50 -0400 Subject: netconf-executor: adding pojo tests Issue-ID: CCSDK-1126 Change-Id: Id98f437cbdb04dac445afb7c6c6089664366ac1f Signed-off-by: Oleg Mitsura --- .../netconf/executor/api/DeviceInfoTest.kt | 37 ++++++++++++ .../netconf/executor/api/NetconfMessageTest.kt | 65 ++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100644 ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfoTest.kt create mode 100644 ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/NetconfMessageTest.kt (limited to 'ms/blueprintsprocessor/functions/netconf-executor/src/test/kotlin/org') 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 -- cgit 1.2.3-korg