How to use disconnect method of com.consol.citrus.ssh.client.SshClient class

Best Citrus code snippet using com.consol.citrus.ssh.client.SshClient.disconnect

Source:SshClient.java Github

copy

Full Screen

...93 waitCommandToFinish(channelExec);94 rc = channelExec.getExitStatus();95 } finally {96 if (channelExec != null && channelExec.isConnected()) {97 channelExec.disconnect();98 }99 disconnect();100 }101 SshResponse sshResp = new SshResponse(outStream.toString(),errStream.toString(),rc);102 Message response = getEndpointConfiguration().getMessageConverter().convertInbound(sshResp, getEndpointConfiguration(), context)103 .setHeader("user", rUser);104 correlationManager.store(correlationKey, response);105 }106 @Override107 public Message receive(TestContext context) {108 return receive(correlationManager.getCorrelationKey(109 getEndpointConfiguration().getCorrelator().getCorrelationKeyName(getName()), context), context);110 }111 @Override112 public Message receive(String selector, TestContext context) {113 return receive(selector, context, getEndpointConfiguration().getTimeout());114 }115 @Override116 public Message receive(TestContext context, long timeout) {117 return receive(correlationManager.getCorrelationKey(118 getEndpointConfiguration().getCorrelator().getCorrelationKeyName(getName()), context), context, timeout);119 }120 @Override121 public Message receive(String selector, TestContext context, long timeout) {122 Message message = correlationManager.find(selector, timeout);123 if (message == null) {124 throw new ActionTimeoutException("Action timeout while receiving synchronous reply message from ssh server");125 }126 return message;127 }128 @Override129 public Producer createProducer() {130 return this;131 }132 @Override133 public SelectiveConsumer createConsumer() {134 return this;135 }136 private void connect(String rUser) {137 if (session == null || !session.isConnected()) {138 try {139 if (StringUtils.hasText(getEndpointConfiguration().getPrivateKeyPath())) {140 jsch.addIdentity(getPrivateKeyPath(), getEndpointConfiguration().getPrivateKeyPassword());141 }142 } catch (JSchException e) {143 throw new CitrusRuntimeException("Cannot add private key " + getEndpointConfiguration().getPrivateKeyPath() + ": " + e,e);144 } catch (IOException e) {145 throw new CitrusRuntimeException("Cannot open private key file " + getEndpointConfiguration().getPrivateKeyPath() + ": " + e,e);146 }147 try {148 session = jsch.getSession(rUser, getEndpointConfiguration().getHost(), getEndpointConfiguration().getPort());149 if (StringUtils.hasText(getEndpointConfiguration().getPassword())) {150 session.setUserInfo(new UserInfoWithPlainPassword(getEndpointConfiguration().getPassword()));151 session.setPassword(getEndpointConfiguration().getPassword());152 }153 session.setConfig(KnownHostsServerKeyVerifier.STRICT_CHECKING_OPTION, getEndpointConfiguration().isStrictHostChecking() ? "yes" : "no");154 session.connect();155 } catch (JSchException e) {156 throw new CitrusRuntimeException("Cannot connect via SSH: " + e,e);157 }158 }159 }160 private void disconnect() {161 if (session.isConnected()) {162 session.disconnect();163 }164 }165 private ChannelExec openChannelExec() throws CitrusRuntimeException {166 ChannelExec channelExec;167 try {168 channelExec = (ChannelExec) session.openChannel("exec");169 } catch (JSchException e) {170 throw new CitrusRuntimeException("Cannot open EXEC SSH channel: " + e,e);171 }172 return channelExec;173 }174 private void waitCommandToFinish(ChannelExec pCh) {175 final long until = System.currentTimeMillis() + getEndpointConfiguration().getCommandTimeout();176 try {...

Full Screen

Full Screen

Source:SshClientTest.java Github

copy

Full Screen

...90 }91 private void standardChannelPrepAndSend() throws JSchException, IOException {92 session.connect();93 prepareChannel(COMMAND, 0);94 disconnect();95 send();96 }97 @Test(expectedExceptions = CitrusRuntimeException.class, expectedExceptionsMessageRegExp = ".*/that/does/not/exist.*")98 public void withUnknownPrivateKey() throws JSchException {99 strictHostChecking(false,null);100 client.getEndpointConfiguration().setPrivateKeyPath("/file/that/does/not/exist");101 doThrow(new JSchException("No such file")).when(jsch).addIdentity("/file/that/does/not/exist", (String) null);102 send();103 }104 @Test(expectedExceptions = CitrusRuntimeException.class,expectedExceptionsMessageRegExp = ".*/notthere\\.key.*")105 public void withUnknownPrivateKey2() throws JSchException {106 strictHostChecking(false,null);107 client.getEndpointConfiguration().setPrivateKeyPath("classpath:com/consol/citrus/ssh/notthere.key");108 jsch.addIdentity("classpath:com/consol/citrus/ssh/notthere.key",(String) null);109 send();110 }111 @Test112 public void withPrivateKey() throws JSchException, IOException {113 strictHostChecking(false,null);114 client.getEndpointConfiguration().setPrivateKeyPath("classpath:com/consol/citrus/ssh/private.key");115 jsch.addIdentity(isA(String.class), (String) isNull());116 strictHostChecking(false, null);117 standardChannelPrepAndSend();118 }119 @Test120 public void withPassword() throws JSchException, IOException {121 client.getEndpointConfiguration().setPassword("consol");122 session.setUserInfo(getUserInfo("consol"));123 session.setPassword("consol");124 strictHostChecking(false, null);125 standardChannelPrepAndSend();126 }127 @Test128 public void straight() throws JSchException, IOException {129 strictHostChecking(false, null);130 standardChannelPrepAndSend();131 }132 private void send() {133 client.send(createMessage(COMMAND, STDIN), context);134 }135 private void disconnect() throws JSchException {136 channel.disconnect();137 when(session.isConnected()).thenReturn(true);138 session.disconnect();139 when(session.openChannel("exec")).thenReturn(channel);140 }141 private void prepareChannel(String pCommand, int pExitStatus) throws JSchException, IOException {142 channel.setErrStream((OutputStream) any());143 channel.setOutputStream((OutputStream) any());144 channel.setInputStream((InputStream) any());145 channel.setCommand(pCommand);146 channel.connect(CONNECTTION_TIMEOUT);147 when(channel.getOutputStream()).thenReturn(outStream);148 when(channel.isClosed()).thenReturn(false);149 when(channel.isClosed()).thenReturn(true);150 when(channel.getExitStatus()).thenReturn(pExitStatus);151 when(channel.isConnected()).thenReturn(true);152 }...

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ssh;2import com.consol.citrus.dsl.runner.TestRunner;3import com.consol.citrus.ssh.client.SshClient;4import com.consol.citrus.ssh.message.SshMessage;5import com.consol.citrus.ssh.server.SshServer;6import com.consol.citrus.ssh.server.SshServerBuilder;7import org.apache.sshd.common.NamedFactory;8import org.apache.sshd.server.auth.password.UserAuthPasswordFactory;9import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider;10import org.apache.sshd.server.session.ServerSession;11import org.testng.annotations.Test;12import java.io.IOException;13import java.util.ArrayList;14import java.util.List;15import static org.mockito.Mockito.mock;16import static org.mockito.Mockito.verify;17public class SshClientTest {18 public void testSshClient() {19 TestRunner runner = new TestRunner();20 .sshServer()21 .port(2222)22 .hostKeyProvider(new SimpleGeneratorHostKeyProvider())23 .userAuthFactories(new ArrayList<NamedFactory<org.apache.sshd.server.auth.UserAuth>>() {24 {25 add(new UserAuthPasswordFactory());26 }27 })28 .build();29 sshServer.start();30 SshClient sshClient = new SshClient();31 sshClient.setPort(2222);32 sshClient.setHost("localhost");33 sshClient.setUsername("admin");34 sshClient.setPassword("admin");35 sshClient.setCommandTimeout(5000);36 sshClient.connect();37 sshClient.send("ls");38 SshMessage response = sshClient.receive();39 System.out.println("response: " + response.getCommandResult());40 sshClient.disconnect();41 }42}

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ssh;2import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;3import org.testng.annotations.Test;4public class SshClientIT extends TestNGCitrusTestDesigner {5 public void testDisconnect() {6 variable("host", "localhost");7 variable("port", "22");8 variable("user", "user");9 variable("password", "password");10 variable("command", "ls -l");11 ssh()12 .client()13 .host("${host}")14 .port("${port}")15 .user("${user}")16 .password("${password}")17 .command("${command}")18 .disconnect();19 }20}21package com.consol.citrus.ssh;22import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;23import org.testng.annotations.Test;24public class SshClientIT extends TestNGCitrusTestDesigner {25 public void testDisconnect() {26 variable("host", "localhost");27 variable("port", "22");28 variable("user", "user");29 variable("password", "password");30 variable("command", "ls -l");31 ssh()32 .client()33 .host("${host}")34 .port("${port}")35 .user("${user}")36 .password("${password}")37 .command("${command}")38 .disconnect();39 }40}41package com.consol.citrus.ssh;42import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;43import org.testng.annotations.Test;44public class SshClientIT extends TestNGCitrusTestDesigner {45 public void testDisconnect() {46 variable("host", "localhost");47 variable("port", "22");48 variable("user", "user");49 variable("password", "password");50 variable("command", "ls -l");51 ssh()52 .client()53 .host("${host}")54 .port("${port}")55 .user("${user}")56 .password("${password}")57 .command("${command}")58 .disconnect();59 }60}

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.dsl.design;2import com.consol.citrus.dsl.design.TestDesigner;3import org.springframework.context.annotation.Bean;4import org.springframework.context.annotation.Configuration;5import org.springframework.context.annotation.Import;6import com.consol.citrus.dsl.runner.TestRunner;7import com.consol.citrus.dsl.runner.TestRunnerSupport;8import com.consol.citrus.ssh.client.SshClient;9import com.consol.citrus.ssh.client.SshEndpointConfiguration;10import com.consol.citrus.ssh.message.SshMessage;11import com.consol.citrus.ssh.server.SshServer;12import com.consol.citrus.ssh.server.SshServerBuilder;13import com.consol.citrus.ssh.server.SshServerConfiguration;14import com.consol.citrus.ssh.server.SshServerConfigurationBuilder;15import com.consol.citrus.ssh.server.SshServerRunner;16import com.consol.citrus.ssh.server.SshServerRunnerBuilder;17import com.consol.citrus.ssh.server.SshServerRunnerSupport;18import com.consol.citrus.ssh.server.SshServerSupport;19import com.consol.citrus.ssh.server.SshServerSupportBuilder;20import com.consol.citrus.ssh.server.SshServerSupportRunner;21import com.consol.citrus.ssh.server.SshServerSupportRunnerBuilder;22import com.consol.citrus.ssh.server.SshServerSupportRunnerSupport;23import com.consol.citrus.ssh.server.SshServerSupportSupport;24import com.consol.citrus.ssh.server.SshServerSupportSupportBuilder;25import com.consol.citrus.ssh.server.SshServerSupportSupportRunner;26import com.consol.citrus.ssh.server.SshServerSupportSupportRunnerBuilder;27import com.consol.citrus.ssh.server.SshServerSupportSupportRunnerSupport;28import com.consol.citrus.ssh.server.SshServerSupportSupportSupport;29import com.consol.citrus.ssh.server.SshServerSupportSupportSupportBuilder;30import com.consol.citrus.ssh.server.SshServerSupportSupportSupportRunner;31import com.consol.citrus.ssh.server.SshServerSupportSupportSupportRunnerBuilder;32import com.consol.citrus.ssh.server.SshServerSupportSupportSupportRunnerSupport;33import com.consol.citrus.ssh.server.SshServerSupportSupportSupportSupport;34import com.consol

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.ssh.client.SshClient;2import com.consol.citrus.ssh.message.SshMessage;3import com.consol.citrus.ssh.message.SshMessageHeaders;4import org.springframework.context.annotation.Bean;5import org.springframework.context.annotation.Configuration;6import org.springframework.integration.annotation.ServiceActivator;7import org.springframework.integration.annotation.Transformer;8import org.springframework.integration.channel.DirectChannel;9import org.springframework.integration.sftp.session.DefaultSftpSessionFactory;10import org.springframework.integration.sftp.session.SftpSession;11import org.springframework.messaging.Message;12import org.springframework.messaging.MessageChannel;13import org.springframework.messaging.MessageHandler;14import org.springframework.messaging.MessageHeaders;15public class SshDisconnect {16 public SshClient sshClient() {17 SshClient sshClient = new SshClient();18 sshClient.setHost("localhost");19 sshClient.setPort(22);20 sshClient.setUser("user");21 sshClient.setPassword("password");22 return sshClient;23 }24 public MessageChannel sshInputChannel() {25 return new DirectChannel();26 }27 public MessageChannel sshOutputChannel() {28 return new DirectChannel();29 }30 @Transformer(inputChannel = "sshInputChannel", outputChannel = "sshOutputChannel")31 public SshMessage sshMessageTransformer() {32 return new SshMessage();33 }34 @ServiceActivator(inputChannel = "sshOutputChannel")35 public MessageHandler sshMessageHandler() {36 return new MessageHandler() {37 public void handleMessage(Message<?> message) throws Exception {38 MessageHeaders headers = message.getHeaders();39 SshMessageHeaders sshHeaders = new SshMessageHeaders(headers);40 SshClient sshClient = sshHeaders.getSshClient();41 sshClient.disconnect();42 }43 };44 }45}46import com.consol.citrus.ssh.client.SshClient;47import com.consol.citrus.ssh.message.SshMessage;48import com.consol.citrus.ssh.message.SshMessageHeaders;49import org.springframework.context.annotation.Bean;50import org.springframework.context.annotation.Configuration;51import org.springframework.integration.annotation.ServiceActivator;52import org.springframework.integration.annotation

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ssh.sample;2import com.consol.citrus.ssh.client.SshClient;3import com.consol.citrus.ssh.message.SshMessage;4import com.consol.citrus.ssh.server.SshServer;5import com.consol.citrus.ssh.server.SshServerBuilder;6import org.springframework.context.annotation.Bean;7import org.springframework.context.annotation.Configuration;8import org.springframework.context.annotation.Import;9@Import(SshServerConfig.class)10public class SshClientConfig {11 public SshClient sshClient(SshServer sshServer) {12 return new SshClientBuilder()13 .server(sshServer)14 .build();15 }16 public SshMessage disconnect() {17 return new SshMessage("disconnect");18 }19}20package com.consol.citrus.ssh.sample;21import com.consol.citrus.dsl.junit.JUnit4CitrusTestRunner;22import com.consol.citrus.dsl.runner.TestRunner;23import com.consol.citrus.ssh.client.SshClient;24import com.consol.citrus.ssh.message.SshMessage;25import org.springframework.beans.factory.annotation.Autowired;26import org.springframework.beans.factory.annotation.Qualifier;27import org.springframework.http.HttpStatus;28import org.springframework.test.context.ContextConfiguration;29@ContextConfiguration(classes = {SshClientConfig.class})30public class SshClientIT extends JUnit4CitrusTestRunner {31 private SshClient sshClient;32 @Qualifier("disconnect")33 private SshMessage disconnect;34 public void run(TestRunner runner) {35 runner.http(builder -> builder.client(sshClient)36 .send(disconnect)37 .receive()38 .response(HttpStatus.OK));39 }40}41package com.consol.citrus.ssh.sample;42import com.consol.citrus.dsl.runner.TestRunner;43import com.consol.citrus.ssh.client.SshClient;44import com.consol.citrus.ssh.client.SshClientBuilder;45import com.consol.citrus.ssh.server.SshServer;46import com.consol.citrus.ssh.server.SshServerBuilder;47import org.springframework.context.annotation.Bean;48import org.springframework.context.annotation.Configuration;49import org.springframework.context.annotation.Import;50@Import(SshClientConfig

Full Screen

Full Screen

disconnect

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ssh;2import com.consol.citrus.ssh.client.SshClient;3import com.consol.citrus.ssh.client.SshEndpointConfiguration;4import com.consol.citrus.ssh.message.SshMessage;5import com.consol.citrus.ssh.server.SshServer;6import com.consol.citrus.ssh.server.SshServerBuilder;7import org.apache.sshd.common.NamedFactory;8import org.apache.sshd.server.Command;9import org.apache.sshd.server.UserAuth;10import org.apache.sshd.server.auth.UserAuthPasswordFactory;11import org.apache.sshd.server.command.ScpCommandFactory;12import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider;13import org.apache.sshd.server.session.ServerSession;14import org.springframework.core.io.ClassPathResource;15import org.testng.Assert;16import org.testng.annotations.Test;17import java.io.IOException;18import java.util.ArrayList;19import java.util.List;20public class SshClientDisconnectTest {21 public void testDisconnect() throws IOException {22 SshServer sshServer = new SshServerBuilder()23 .port(2222)24 .host("localhost")25 .user("citrus")26 .password("citrus")27 .keyProvider(new SimpleGeneratorHostKeyProvider(new ClassPathResource("hostkey.ser")))28 .commandFactory(new ScpCommandFactory())29 .userAuthFactories(new ArrayList<NamedFactory<UserAuth>>() {{30 add(new UserAuthPasswordFactory());31 }})32 .build();33 sshServer.start();34 SshEndpointConfiguration configuration = new SshEndpointConfiguration();35 configuration.setHost("localhost");36 configuration.setPort(2222);37 configuration.setUser("citrus");38 configuration.setPassword("citrus");39 SshClient sshClient = new SshClient(configuration);40 sshClient.connect();41 SshMessage message = new SshMessage("ls");42 sshClient.send(message);43 sshClient.disconnect();44 sshServer.stop();45 }46}47package com.consol.citrus.ssh;48import com.consol.citrus.ssh.client.SshClient;49import com.consol.citrus.ssh.client.SshEndpointConfiguration;50import com.consol.citrus.ssh.message.SshMessage;51import com.consol.citrus.ssh.server.SshServer;52import com

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful