aboutsummaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-netconf-adapter
diff options
context:
space:
mode:
authorTomasz Gwozdecki <tomasz.gwozdecki@nokia.com>2018-05-18 04:17:16 -0400
committerPatrick Brady <pb071s@att.com>2018-06-01 21:40:02 +0000
commitd3d2f9343b0b0a08484d258d877ff1156fad0e78 (patch)
treeb06dbc32ec9ec27f078e3445a570187e36dd1d95 /appc-adapters/appc-netconf-adapter
parentfd0f834287d4dc0161c44e6a8d0c074971e015f0 (diff)
junits for NetconfClientFactory
-Added new test class NetconfClientFactoryTest Change-Id: Ifb8fd7ab07ad1aa9bd2ea9c6d56e708748da3217 Issue-ID: APPC-913 Signed-off-by: Tomasz Gwozdecki <tomasz.gwozdecki@nokia.com>
Diffstat (limited to 'appc-adapters/appc-netconf-adapter')
-rw-r--r--appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/NetconfClientFactoryTest.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/NetconfClientFactoryTest.java b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/NetconfClientFactoryTest.java
new file mode 100644
index 000000000..de6be9f88
--- /dev/null
+++ b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/NetconfClientFactoryTest.java
@@ -0,0 +1,47 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 Nokia. All rights reserved.
+ * =============================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.appc.adapter.netconf;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+import org.onap.appc.adapter.netconf.jsch.NetconfClientJsch;
+import org.onap.appc.adapter.netconf.odlconnector.NetconfClientRestconfImpl;
+
+public class NetconfClientFactoryTest {
+
+ @Test
+ public void getNetconfClient_shouldCreateRestClient_forRestClientType() {
+ NetconfClient netconfClient = new NetconfClientFactory().getNetconfClient(NetconfClientType.RESTCONF);
+ assertTrue(netconfClient instanceof NetconfClientRestconfImpl);
+ }
+
+ @Test
+ public void getNetconfClient_shouldCreateJschClient_forSshClientType() {
+ NetconfClient netconfClient = new NetconfClientFactory().getNetconfClient(NetconfClientType.SSH);
+ assertTrue(netconfClient instanceof NetconfClientJsch);
+ }
+
+ @Test
+ public void getNetconfClient_shouldReturnNullForInvalidClientType() {
+ NetconfClient netconfClient = new NetconfClientFactory().getNetconfClient(null);
+ assertNull(netconfClient);
+ }
+} \ No newline at end of file