junits for NetconfClientFactory 45/48145/2
authorTomasz Gwozdecki <tomasz.gwozdecki@nokia.com>
Fri, 18 May 2018 08:17:16 +0000 (04:17 -0400)
committerPatrick Brady <pb071s@att.com>
Fri, 1 Jun 2018 21:40:02 +0000 (21:40 +0000)
-Added new test class NetconfClientFactoryTest

Change-Id: Ifb8fd7ab07ad1aa9bd2ea9c6d56e708748da3217
Issue-ID: APPC-913
Signed-off-by: Tomasz Gwozdecki <tomasz.gwozdecki@nokia.com>
appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/NetconfClientFactoryTest.java [new file with mode: 0644]

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 (file)
index 0000000..de6be9f
--- /dev/null
@@ -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