From: Ganesh Chandrasekaran Date: Wed, 5 Sep 2018 00:41:21 +0000 (+0900) Subject: Test cases configure and disconnect JschClient X-Git-Tag: 1.4.0~29 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F64541%2F3;p=appc.git Test cases configure and disconnect JschClient Issue-ID: APPC-1182 Change-Id: I49db6487f48a214ccd061be323fde09546bbd228 Signed-off-by: Ganesh Chandrasekaran --- 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(); + } }