Best Citrus code snippet using com.consol.citrus.ssh.server.SinglePublicKeyAuthenticatorTest.getPublicKey
Source:SinglePublicKeyAuthenticatorTest.java
...40 }41 @Test42 public void withClassPath() throws IOException {43 SinglePublicKeyAuthenticator auth = new SinglePublicKeyAuthenticator("roland","classpath:com/consol/citrus/ssh/allowed_test_key.pem");44 PublicKey pKey = getPublicKey("/com/consol/citrus/ssh/allowed_test_key.pem");45 assertTrue(auth.authenticate("roland", pKey, null));46 assertFalse(auth.authenticate("guenther", pKey, null));47 pKey = getPublicKey("/com/consol/citrus/ssh/forbidden_test_key.pem");48 assertFalse(auth.authenticate("roland", pKey, null));49 pKey = getPublicKey("/com/consol/citrus/ssh/citrus.pem");50 assertFalse(auth.authenticate("citrus", pKey, null));51 }52 @Test53 public void withFile() throws IOException {54 File temp = copyToTempFile("/com/consol/citrus/ssh/allowed_test_key.pem");55 SinglePublicKeyAuthenticator auth = new SinglePublicKeyAuthenticator("roland",temp.getAbsolutePath());56 PublicKey pKey = getPublicKeyFromStream(new FileInputStream(temp));57 assertTrue(auth.authenticate("roland", pKey, null));58 assertFalse(auth.authenticate("guenther",pKey,null));59 temp = copyToTempFile("/com/consol/citrus/ssh/forbidden_test_key.pem");60 pKey = getPublicKeyFromStream(new FileInputStream(temp));61 assertFalse(auth.authenticate("roland", pKey, null));62 }63 @Test(expectedExceptions = CitrusRuntimeException.class, expectedExceptionsMessageRegExp = ".*com/consol/citrus/ssh/private.key.*")64 public void invalidKeyFormat() {65 new SinglePublicKeyAuthenticator("roland", "classpath:com/consol/citrus/ssh/private.key");66 }67 @Test(expectedExceptions = CitrusRuntimeException.class, expectedExceptionsMessageRegExp = ".*blubber\\.bla.*")68 public void notInClasspath() {69 new SinglePublicKeyAuthenticator("roland", "classpath:com/consol/citrus/ssh/blubber.bla");70 }71 @Test(expectedExceptions = CitrusRuntimeException.class,expectedExceptionsMessageRegExp = ".*/no/valid/path.*")72 public void invalidFilePath() {73 new SinglePublicKeyAuthenticator("roland","/no/valid/path");74 }75 76 /**77 * Gets public key instance from resource.78 * @param pResource79 * @return80 * @throws IOException81 */82 private PublicKey getPublicKey(String pResource) throws IOException {83 return getPublicKeyFromStream(getClass().getResourceAsStream(pResource));84 }85 /**86 * Creates new temporary file from resource.87 * @param pResource88 * @return89 * @throws IOException90 */91 private File copyToTempFile(String pResource) throws IOException {92 File temp = File.createTempFile("citrus-ssh", "pem");93 FileCopyUtils.copy(getClass().getResourceAsStream(pResource),94 new FileOutputStream(temp));95 return temp;96 }97 98 /**99 * Create public key instance from file input stream.100 * @param is101 * @return102 * @throws IOException103 */104 private PublicKey getPublicKeyFromStream(InputStream is) throws IOException {105 Reader reader = new InputStreamReader(is);106 try {107 Object o = new PEMParser(reader).readObject();108 if (o instanceof PEMKeyPair) {109 return new BouncyCastleProvider().getPublicKey(((PEMKeyPair) o).getPublicKeyInfo());110 } else if (o instanceof SubjectPublicKeyInfo) {111 return new BouncyCastleProvider().getPublicKey((SubjectPublicKeyInfo) o);112 } else {113 throw new CitrusRuntimeException("Unable to read public key");114 }115 } catch (IOException e) {116 throw new CitrusRuntimeException("Failed to read public key", e);117 } finally {118 IoUtils.closeQuietly(is, reader);119 }120 }121}...
getPublicKey
Using AI Code Generation
1package com.consol.citrus.ssh.server;2import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;3import org.apache.sshd.common.config.keys.KeyUtils;4import org.apache.sshd.common.keyprovider.KeyPairProvider;5import org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator;6import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider;7import org.apache.sshd.server.session.ServerSession;8import org.springframework.context.annotation.Bean;9import org.springframework.context.annotation.Configuration;10import org.testng.annotations.Test;11import java.io.File;12import java.io.IOException;13import java.security.PublicKey;14import java.util.Arrays;15import java.util.List;16public class SinglePublicKeyAuthenticatorTest extends TestNGCitrusTestDesigner {17 public void test() {18 ssh()19 .server()20 .publicKeyAuthenticator(publicKeyAuthenticator())21 .hostKeyProvider(hostKeyProvider())22 .port(2222)23 .autoStart(true);24 ssh()25 .client()26 .host("localhost")27 .port(2222)28 .user("citrus")29 .privateKeyPath("src/test/resources/privateKey")30 .publicKeyPath("src/test/resources/publicKey")31 .password("s3cr3t");32 send("Hello Citrus!");33 receive("Hello Citrus!");34 }35 public SimpleGeneratorHostKeyProvider hostKeyProvider() {36 return new SimpleGeneratorHostKeyProvider(new File("target/hostkey.ser"));37 }38 public PublickeyAuthenticator publicKeyAuthenticator() {39 return new SinglePublicKeyAuthenticator(getPublicKey());40 }41 public PublicKey getPublicKey() {42 try {
getPublicKey
Using AI Code Generation
1public void testSshServerWithPublicKeyAuthenticator() {2 SshServer server = SshServer.setUpDefaultServer();3 server.setPort(2222);4 server.setKeyPairProvider(new SimpleGeneratorHostKeyProvider());5 SinglePublicKeyAuthenticatorTest publicKeyAuthenticator = new SinglePublicKeyAuthenticatorTest();6 publicKeyAuthenticator.setPublicKey(server.getPublickey());7 server.setPasswordAuthenticator(publicKeyAuthenticator);8 server.start();9 SshClient client = SshClient.setUpDefaultClient();10 client.setKeyPairProvider(new SimpleGeneratorHostKeyProvider());11 client.start();12 ClientSession session = client.connect("localhost", 2222).verify().getSession();13 session.addPasswordIdentity("test");14 session.auth().verify();15 ClientChannel channel = session.createChannel(ClientChannel.CHANNEL_SHELL);16 channel.setIn(new ByteArrayInputStream("ls -al".getBytes()));17 channel.setOut(new ByteArrayOutputStream());18 channel.open().verify();19 channel.waitFor(ClientChannel.CLOSED, 0);20 session.close(false);21 client.stop();22 server.stop();23}
getPublicKey
Using AI Code Generation
1public class SshServerTest extends AbstractTestNGCitrusTest {2 private TestRunner runner;3 private SshServer sshServer;4 private SinglePublicKeyAuthenticatorTest singlePublicKeyAuthenticatorTest;5 public void testSshServer() {6 runner.http(action -> action7 .client("sshClient")8 .send()9 .post()10 .fork(true)11 .payload("<testRequestMessage><text>Hello Citrus!</text></testRequestMessage>"));12 runner.echo("Wait for SSH server to be ready");13 runner.waitFor().interval(500).timeout(10000L).condition(new Condition() {14 public boolean isSatisfied() {15 return sshServer.isRunning();16 }17 });18 runner.echo("Wait for SSH client to be ready");19 runner.waitFor().interval(500).timeout(10000L).condition(new Condition() {20 public boolean isSatisfied() {21 return singlePublicKeyAuthenticatorTest.isClientConnected();22 }23 });24 runner.echo("Generate SSH public key from private key");25 runner.createVariable("sshPublicKey", singlePublicKeyAuthenticatorTest.getPublicKey());26 runner.echo("Send SSH command to server");27 runner.ssh(action -> action28 .command("ls -la")29 .acceptUnknownHosts(true)30 .publicKey("${sshPublicKey}")31 .username("citrus")32 .password("citrus")33 .host("localhost")34 .port(2222)35 .timeout(5000L)36 .validateCommandResult(".*\\.md"));37 runner.echo("Stop SSH server");38 runner.stopServer(sshServer);39 }40}
getPublicKey
Using AI Code Generation
1public class SinglePublicKeyAuthenticatorTest {2 public void test() {3 SinglePublicKeyAuthenticator singlePublicKeyAuthenticator = new SinglePublicKeyAuthenticator();4 singlePublicKeyAuthenticator.setAllowedUsername("username");5 singlePublicKeyAuthenticator.setAllowedPublicKey(getPublicKey());6 singlePublicKeyAuthenticator.authenticate("username", getPublicKey());7 }8 private PublicKey getPublicKey() {9 try {10 return KeyFactory.getInstance("RSA").generatePublic(new X509EncodedKeySpec(Base64.getDecoder().decode("AAAAB3NzaC1yc2EAAAADAQABAAABAQCx5pLl5t5W5X9d5gGZ2iVZ1dYlYzKZaRiBx7gJyK8W2XVXvqzr1rV3Zt8wP7VvZ4a4j4N3q0Ls6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlTlY0QbH1v2M2QmZ1O8cJ6X9sDZlC+ZTlT
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!