From 6803143f3ab9b24b212de4cacf16bb739450f1b6 Mon Sep 17 00:00:00 2001 From: Ganesh Chandrasekaran Date: Wed, 5 Sep 2018 09:41:21 +0900 Subject: Test cases configure and disconnect JschClient Issue-ID: APPC-1182 Change-Id: I49db6487f48a214ccd061be323fde09546bbd228 Signed-off-by: Ganesh Chandrasekaran --- .../adapter/netconf/jsch/TestNetconfClientJsch.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/jsch/TestNetconfClientJsch.java b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/jsch/TestNetconfClientJsch.java index 2caf5d421..fb44763df 100644 --- a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/jsch/TestNetconfClientJsch.java +++ b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/jsch/TestNetconfClientJsch.java @@ -21,14 +21,17 @@ package org.onap.appc.adapter.netconf.jsch; +import com.jcraft.jsch.Session; import org.junit.Assert; import org.junit.Before; import org.junit.Test; +import org.onap.appc.adapter.netconf.ConnectionDetails; import org.onap.appc.adapter.netconf.NetconfConnectionDetails; import org.onap.appc.adapter.netconf.internal.NetconfAdapter; import org.onap.appc.exceptions.APPCException; import java.io.IOException; +import java.util.Properties; public class TestNetconfClientJsch { @@ -46,6 +49,9 @@ public class TestNetconfClientJsch { connectionDetails.setPort(8080); connectionDetails.setUsername("test"); connectionDetails.setPassword("test"); + Properties additionalProperties = new Properties(); + additionalProperties.setProperty("testKey1", "testParam1"); + connectionDetails.setAdditionalProperties(additionalProperties); netconfClientJsch.connect(connectionDetails); } @@ -77,4 +83,16 @@ public class TestNetconfClientJsch { netconfClientJsch.configure(message); } + + @Test (expected = NullPointerException.class) + public void testGetConfigure() throws APPCException, IOException { + + netconfClientJsch.getConfiguration(); + } + + @Test + public void testDisconnect() throws APPCException, IOException { + + netconfClientJsch.disconnect(); + } } -- cgit 1.2.3-korg