summaryrefslogtreecommitdiffstats
path: root/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java
diff options
context:
space:
mode:
authorJoss Armstrong <joss.armstrong@ericsson.com>2019-01-09 15:30:17 +0000
committerTakamune Cho <takamune.cho@att.com>2019-01-10 12:02:41 +0000
commitfede312b74f6caa7b5437a419b8d05a8eeffedf6 (patch)
tree183131c033b02ba0455eef600a916f4e3b72a5cc /appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java
parent670feaeaa8695d139e326b635c1f6bd1aa5e0dcf (diff)
Test coverage in appc-dg-ssh
Increased line coverage from 49% to 93% Issue-ID: APPC-1313 Change-Id: I2f27742fd996cd6d07668fd61c887e29f2140818 Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
Diffstat (limited to 'appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java')
-rw-r--r--appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshDBPluginImplTest.java80
-rw-r--r--appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshServiceImplTest.java248
2 files changed, 205 insertions, 123 deletions
diff --git a/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshDBPluginImplTest.java b/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshDBPluginImplTest.java
new file mode 100644
index 000000000..20d602cbb
--- /dev/null
+++ b/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshDBPluginImplTest.java
@@ -0,0 +1,80 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2019 Ericsson
+ * =============================================================================
+ * 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.dg.ssh.impl;
+
+import java.util.HashMap;
+import java.util.Map;
+import org.junit.Assert;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.mockito.Mockito;
+import org.onap.appc.adapter.ssh.Constants;
+import org.onap.appc.adapter.ssh.SshConnectionDetails;
+import org.onap.appc.adapter.ssh.SshDataAccessException;
+import org.onap.appc.adapter.ssh.SshDataAccessService;
+import org.onap.appc.exceptions.APPCException;
+import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
+
+public class SshDBPluginImplTest {
+
+ @Rule
+ public ExpectedException expectedEx = ExpectedException.none();
+
+ @Test
+ public void testRetrieveConnectionDetails() throws APPCException {
+ SshDBPluginImpl impl = new SshDBPluginImpl();
+ SshDataAccessService dataAccessServiceMock = Mockito.mock(SshDataAccessService.class);
+ Mockito.doReturn(true).when(dataAccessServiceMock).retrieveConnectionDetails(Mockito.anyString(),
+ Mockito.any(SshConnectionDetails.class));
+ impl.setDataAccessService(dataAccessServiceMock);
+ Map<String, String> params = new HashMap<>();
+ SvcLogicContext ctx = new SvcLogicContext();
+ impl.retrieveConnectionDetails(params, ctx);
+ Assert.assertNotNull(ctx.getAttribute(Constants.CONNECTION_DETAILS_FIELD_NAME));
+ }
+
+ @Test
+ public void testRetrieveConnectionDetailsAppcException() throws APPCException {
+ SshDBPluginImpl impl = new SshDBPluginImpl();
+ SshDataAccessService dataAccessServiceMock = Mockito.mock(SshDataAccessService.class);
+ impl.setDataAccessService(dataAccessServiceMock);
+ Map<String, String> params = new HashMap<>();
+ SvcLogicContext ctx = new SvcLogicContext();
+ expectedEx.expect(APPCException.class);
+ impl.retrieveConnectionDetails(params, ctx);
+ }
+
+ @Test
+ public void testRetrieveConnectionDetailsSshDataAccessException() throws APPCException {
+ SshDBPluginImpl impl = new SshDBPluginImpl();
+ SshDataAccessService dataAccessServiceMock = Mockito.mock(SshDataAccessService.class);
+ Mockito.doThrow(new SshDataAccessException()).when(dataAccessServiceMock).retrieveConnectionDetails(Mockito.anyString(),
+ Mockito.any(SshConnectionDetails.class));
+ impl.setDataAccessService(dataAccessServiceMock);
+ Map<String, String> params = new HashMap<>();
+ SvcLogicContext ctx = new SvcLogicContext();
+ expectedEx.expect(SshDataAccessException.class);
+ impl.retrieveConnectionDetails(params, ctx);
+ }
+
+}
diff --git a/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshServiceImplTest.java b/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshServiceImplTest.java
index 1c7780cd7..deaf0eb68 100644
--- a/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshServiceImplTest.java
+++ b/appc-dg/appc-dg-shared/appc-dg-ssh/src/test/java/org/onap/appc/dg/ssh/impl/SshServiceImplTest.java
@@ -5,6 +5,8 @@
* Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Copyright (C) 2017 Amdocs
+ * ================================================================================
+ * Modifications (C) 2019 Ericsson
* =============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,128 +47,128 @@ import java.util.Properties;
public class SshServiceImplTest {
- private static final ObjectMapper mapper = new ObjectMapper();
-
- @Rule
- public ExpectedException thrown = ExpectedException.none();
-
- @Test
- public void testExec() throws APPCException, JsonProcessingException {
- String host = "testhost";
- String username = "testuser";
- String password = "testpassword";
- String command = "cat keystonerc_Test";
-
- SshServiceImpl sshService = new SshServiceImpl();
- SshAdapterMock sshAdapterMock = new SshAdapterMock();
- sshService.setSshAdapter(sshAdapterMock);
-
- System.out.println("=> Executing SSH command [" + command + "]...");
-
- Map<String, String> params = new HashMap<>();
- params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
- params.put(SshService.PARAM_IN_command, command);
- SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
- sshService.exec(params, svcLogicContext);
- int status = Integer.parseInt(svcLogicContext.getAttribute(SshService.PARAM_OUT_status));
- String stdout = svcLogicContext.getAttribute(SshService.PARAM_OUT_stdout);
- String stderr = svcLogicContext.getAttribute(SshService.PARAM_OUT_stderr);
- System.out.println("=> SSH command [" + command + "] status is [" + status + "]. stdout is [" + stdout + "]. stderr is [" + stderr + "]");
-
- List<SshConnectionMock> connectionMocks = sshAdapterMock.getConnectionMocks();
- Assert.assertEquals(1, connectionMocks.size());
- SshConnectionMock connectionMock = connectionMocks.get(0);
- Assert.assertNotNull(connectionMock);
- Assert.assertEquals(host, connectionMock.getHost());
- Assert.assertEquals(SshService.DEF_port, connectionMock.getPort());
- Assert.assertEquals(username, connectionMock.getUsername());
- Assert.assertEquals(password, connectionMock.getPassword());
- Assert.assertEquals(1, connectionMock.getConnectCallCount());
- Assert.assertEquals(1, connectionMock.getDisconnectCallCount());
- List<String> executedCommands = connectionMock.getExecutedCommands();
- Assert.assertEquals(1, executedCommands.size());
- String executedCommand = executedCommands.get(0);
- Assert.assertEquals(command, executedCommand);
- }
-
- @Test
- public void testExecWithStatusCheck() throws APPCException, JsonProcessingException {
- String host = "testhost";
- String username = "testuser";
- String password = "testpassword";
- String command = "cat keystonerc_Test";
-
- SshServiceImpl sshService = new SshServiceImpl();
- SshAdapterMock sshAdapterMock = new SshAdapterMock();
- sshService.setSshAdapter(sshAdapterMock);
-
- System.out.println("=> Executing SSH command [" + command + "]...");
- Map<String, String> params = new HashMap<>();
- params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
- params.put(SshService.PARAM_IN_command, command);
- SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
- sshService.execWithStatusCheck(params, svcLogicContext);
- int status = Integer.parseInt(svcLogicContext.getAttribute(SshService.PARAM_OUT_status));
- String stdout = svcLogicContext.getAttribute(SshService.PARAM_OUT_stdout);
- String stderr = svcLogicContext.getAttribute(SshService.PARAM_OUT_stderr);
- System.out.println("=> SSH command [" + command + "] status is [" + status + "]. stdout is [" + stdout + "]. stderr is [" + stderr + "]");
-
- List<SshConnectionMock> connectionMocks = sshAdapterMock.getConnectionMocks();
- Assert.assertEquals(1, connectionMocks.size());
- SshConnectionMock connectionMock = connectionMocks.get(0);
- Assert.assertNotNull(connectionMock);
- Assert.assertEquals(host, connectionMock.getHost());
- Assert.assertEquals(SshService.DEF_port, connectionMock.getPort());
- Assert.assertEquals(username, connectionMock.getUsername());
- Assert.assertEquals(password, connectionMock.getPassword());
- Assert.assertEquals(1, connectionMock.getConnectCallCount());
- Assert.assertEquals(1, connectionMock.getDisconnectCallCount());
- List<String> executedCommands = connectionMock.getExecutedCommands();
- Assert.assertEquals(1, executedCommands.size());
- String executedCommand = executedCommands.get(0);
- Assert.assertEquals(command, executedCommand);
- }
-
- /**
- * Checks that execWithStatusCheck() throws appropriate exception if execution status != 0.
- *
- * @throws APPCException
- * @throws JsonProcessingException
- */
- @Test
- public void testExecWithStatusCheckFail() throws APPCException, JsonProcessingException {
- String host = "testhost";
- String username = "testuser";
- String password = "testpassword";
- String command = "cat keystonerc_Test";
-
- int expectedStatus = 2;
- String expectedErr = "Test failure";
-
- SshServiceImpl sshService = new SshServiceImpl();
- SshAdapterMock sshAdapterMock = new SshAdapterMock();
- sshAdapterMock.setReturnStatus(expectedStatus);
- sshAdapterMock.setReturnStderr(expectedErr);
- sshService.setSshAdapter(sshAdapterMock);
-
- thrown.expect(APPCException.class);
- thrown.expectMessage(CoreMatchers.containsString(expectedErr));
-
- System.out.println("=> Executing SSH command [" + command + "]...");
- Map<String, String> params = new HashMap<>();
- params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
- params.put(SshService.PARAM_IN_command, command);
- SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
- // should fail, no need to perform further assertions
- sshService.execWithStatusCheck(params, svcLogicContext);
- }
-
- private String createConnectionDetails(String host, String username, String password) throws JsonProcessingException {
- SshConnectionDetails connDetails = new SshConnectionDetails();
- connDetails.setHost(host);
- connDetails.setUsername(username);
- connDetails.setPassword(password);
- return mapper.writeValueAsString(connDetails);
- }
+ private static final ObjectMapper mapper = new ObjectMapper();
+
+ @Rule
+ public ExpectedException thrown = ExpectedException.none();
+
+ @Test
+ public void testExec() throws APPCException, JsonProcessingException {
+ String host = "testhost";
+ String username = "testuser";
+ String password = "testpassword";
+ String command = "cat keystonerc_Test";
+
+ SshServiceImpl sshService = new SshServiceImpl();
+ SshAdapterMock sshAdapterMock = new SshAdapterMock();
+ sshService.setSshAdapter(sshAdapterMock);
+
+ System.out.println("=> Executing SSH command [" + command + "]...");
+
+ Map<String, String> params = new HashMap<>();
+ params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
+ params.put(SshService.PARAM_IN_command, command);
+ SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
+ sshService.exec(params, svcLogicContext);
+ int status = Integer.parseInt(svcLogicContext.getAttribute(SshService.PARAM_OUT_status));
+ String stdout = svcLogicContext.getAttribute(SshService.PARAM_OUT_stdout);
+ String stderr = svcLogicContext.getAttribute(SshService.PARAM_OUT_stderr);
+ System.out.println("=> SSH command [" + command + "] status is [" + status + "]. stdout is [" + stdout + "]. stderr is [" + stderr + "]");
+
+ List<SshConnectionMock> connectionMocks = sshAdapterMock.getConnectionMocks();
+ Assert.assertEquals(1, connectionMocks.size());
+ SshConnectionMock connectionMock = connectionMocks.get(0);
+ Assert.assertNotNull(connectionMock);
+ Assert.assertEquals(host, connectionMock.getHost());
+ Assert.assertEquals(SshService.DEF_port, connectionMock.getPort());
+ Assert.assertEquals(username, connectionMock.getUsername());
+ Assert.assertEquals(password, connectionMock.getPassword());
+ Assert.assertEquals(1, connectionMock.getConnectCallCount());
+ Assert.assertEquals(1, connectionMock.getDisconnectCallCount());
+ List<String> executedCommands = connectionMock.getExecutedCommands();
+ Assert.assertEquals(1, executedCommands.size());
+ String executedCommand = executedCommands.get(0);
+ Assert.assertEquals(command, executedCommand);
+ }
+
+ @Test
+ public void testExecWithStatusCheck() throws APPCException, JsonProcessingException {
+ String host = "testhost";
+ String username = "testuser";
+ String password = "testpassword";
+ String command = "cat keystonerc_Test";
+
+ SshServiceImpl sshService = new SshServiceImpl();
+ SshAdapterMock sshAdapterMock = new SshAdapterMock();
+ sshService.setSshAdapter(sshAdapterMock);
+
+ System.out.println("=> Executing SSH command [" + command + "]...");
+ Map<String, String> params = new HashMap<>();
+ params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
+ params.put(SshService.PARAM_IN_command, command);
+ SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
+ sshService.execWithStatusCheck(params, svcLogicContext);
+ int status = Integer.parseInt(svcLogicContext.getAttribute(SshService.PARAM_OUT_status));
+ String stdout = svcLogicContext.getAttribute(SshService.PARAM_OUT_stdout);
+ String stderr = svcLogicContext.getAttribute(SshService.PARAM_OUT_stderr);
+ System.out.println("=> SSH command [" + command + "] status is [" + status + "]. stdout is [" + stdout + "]. stderr is [" + stderr + "]");
+
+ List<SshConnectionMock> connectionMocks = sshAdapterMock.getConnectionMocks();
+ Assert.assertEquals(1, connectionMocks.size());
+ SshConnectionMock connectionMock = connectionMocks.get(0);
+ Assert.assertNotNull(connectionMock);
+ Assert.assertEquals(host, connectionMock.getHost());
+ Assert.assertEquals(SshService.DEF_port, connectionMock.getPort());
+ Assert.assertEquals(username, connectionMock.getUsername());
+ Assert.assertEquals(password, connectionMock.getPassword());
+ Assert.assertEquals(1, connectionMock.getConnectCallCount());
+ Assert.assertEquals(1, connectionMock.getDisconnectCallCount());
+ List<String> executedCommands = connectionMock.getExecutedCommands();
+ Assert.assertEquals(1, executedCommands.size());
+ String executedCommand = executedCommands.get(0);
+ Assert.assertEquals(command, executedCommand);
+ }
+
+ /**
+ * Checks that execWithStatusCheck() throws appropriate exception if execution status != 0.
+ *
+ * @throws APPCException
+ * @throws JsonProcessingException
+ */
+ @Test
+ public void testExecWithStatusCheckFail() throws APPCException, JsonProcessingException {
+ String host = "testhost";
+ String username = "testuser";
+ String password = "testpassword";
+ String command = "cat keystonerc_Test";
+
+ int expectedStatus = 2;
+ String expectedErr = "Test failure";
+
+ SshServiceImpl sshService = new SshServiceImpl();
+ SshAdapterMock sshAdapterMock = new SshAdapterMock();
+ sshAdapterMock.setReturnStatus(expectedStatus);
+ sshAdapterMock.setReturnStderr(expectedErr);
+ sshService.setSshAdapter(sshAdapterMock);
+
+ thrown.expect(APPCException.class);
+ thrown.expectMessage(CoreMatchers.containsString(expectedErr));
+
+ System.out.println("=> Executing SSH command [" + command + "]...");
+ Map<String, String> params = new HashMap<>();
+ params.put(SshService.PARAM_IN_connection_details, createConnectionDetails(host,username,password));
+ params.put(SshService.PARAM_IN_command, command);
+ SvcLogicContext svcLogicContext = new SvcLogicContext(new Properties());
+ // should fail, no need to perform further assertions
+ sshService.execWithStatusCheck(params, svcLogicContext);
+ }
+
+ private String createConnectionDetails(String host, String username, String password) throws JsonProcessingException {
+ SshConnectionDetails connDetails = new SshConnectionDetails();
+ connDetails.setHost(host);
+ connDetails.setUsername(username);
+ connDetails.setPassword(password);
+ return mapper.writeValueAsString(connDetails);
+ }
}