From 4e4aaa9aa7acd9f66222fb6a41321c18d0839812 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Fri, 6 Aug 2021 16:42:10 -0400 Subject: Package upgrades for Istanbul Code updates to support package upgrades in Istanbul Issue-ID: CCSDK-3415 Signed-off-by: Dan Timoney Change-Id: I44efd0d335bc63cc627d6ba64df1d5e406deb72a --- adaptors/ssh-adaptor/ssh-adaptor-bundle/pom.xml | 10 ++++++++++ .../onap/ccsdk/sli/adaptors/ssh/sshd/SshConnectionSshd.java | 2 +- .../org/onap/ccsdk/sli/adaptors/ssh/sshd/SshAdaptorTest.java | 4 +++- 3 files changed, 14 insertions(+), 2 deletions(-) (limited to 'adaptors/ssh-adaptor') diff --git a/adaptors/ssh-adaptor/ssh-adaptor-bundle/pom.xml b/adaptors/ssh-adaptor/ssh-adaptor-bundle/pom.xml index 359ecade6..5661eed32 100644 --- a/adaptors/ssh-adaptor/ssh-adaptor-bundle/pom.xml +++ b/adaptors/ssh-adaptor/ssh-adaptor-bundle/pom.xml @@ -56,6 +56,16 @@ sshd-core provided + + org.apache.sshd + sshd-scp + test + + + org.apache.sshd + sshd-sftp + test + org.onap.ccsdk.sli.core dblib-provider diff --git a/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/main/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshConnectionSshd.java b/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/main/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshConnectionSshd.java index 4194159fe..34b2aa8f5 100644 --- a/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/main/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshConnectionSshd.java +++ b/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/main/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshConnectionSshd.java @@ -93,7 +93,7 @@ class SshConnectionSshd implements SshConnection { } if (keyFile != null) { KeyPairProvider keyPairProvider = new FileKeyPairProvider(Paths.get(keyFile)); - KeyPair keyPair = keyPairProvider.loadKeys().iterator().next(); + KeyPair keyPair = keyPairProvider.loadKeys(clientSession).iterator().next(); clientSession.addPublicKeyIdentity(keyPair); } AuthFuture authFuture = clientSession.auth(); diff --git a/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshAdaptorTest.java b/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshAdaptorTest.java index 5067debd5..fecb42fc2 100644 --- a/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshAdaptorTest.java +++ b/adaptors/ssh-adaptor/ssh-adaptor-bundle/src/test/java/org/onap/ccsdk/sli/adaptors/ssh/sshd/SshAdaptorTest.java @@ -33,6 +33,7 @@ import java.nio.file.Paths; import java.util.Collections; import org.apache.sshd.common.util.OsUtils; import org.apache.sshd.server.SshServer; +import org.apache.sshd.server.ServerFactoryManager; import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider; import org.apache.sshd.server.scp.ScpCommandFactory; import org.apache.sshd.server.subsystem.sftp.SftpSubsystemFactory; @@ -216,7 +217,8 @@ public class SshAdaptorTest { sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider(Paths.get(System.getProperty("java.io.tmpdir") + "/key.ser"))); sshd.setPasswordAuthenticator((username, password, session) -> (SSH_USERNAME.equals(username) && SSH_PASSWORD.equals(password))); sshd.setPublickeyAuthenticator((username, key, session) -> false); - sshd.getProperties().put(SshServer.WELCOME_BANNER, "Welcome to SSHD\n"); + // SshServer.WELCOME_BANNER no longer exists in apache sshd 2.7.0 + // sshd.getProperties().put(SshServer.WELCOME_BANNER, "Welcome to SSHD\n"); startServer0(); try { Thread.sleep(1000); -- cgit 1.2.3-korg