How to use createSftpClient method of com.consol.citrus.ftp.client.SftpClientTest class

Best Citrus code snippet using com.consol.citrus.ftp.client.SftpClientTest.createSftpClient

Source:SftpClientTest.java Github

copy

Full Screen

...50 localFilePath = "classpath:ftp/input/hello.xml";51 remoteFilePath = targetPath + "/hello.xml";52 inputFileAsString = FileUtils.readToString(new ClassPathResource("ftp/input/hello.xml"), StandardCharsets.UTF_8);53 sshServer = startSftpMockServer();54 sftpClient = createSftpClient();55 }56 @AfterClass57 public void tearDown() throws Exception {58 sftpClient.destroy();59 sshServer.close();60 }61 @Test62 public void testListFiles() {63 String remoteFilePath = targetPath + "/file1";64 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);65 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");66 assertTrue(Paths.get(remoteFilePath).toFile().exists());67 remoteFilePath = targetPath + "/file2";68 ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);69 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");70 assertTrue(Paths.get(remoteFilePath).toFile().exists());71 ftpMessage = sftpClient.listFiles(listCommand(targetPath + "/file*"), context);72 verifyMessage(ftpMessage, ListCommandResult.class, FILE_STATUS_OK,73 "List files complete", Arrays.asList("file1", "file2"));74 assertTrue(Paths.get(targetPath + "/file1").toFile().exists());75 assertTrue(Paths.get(targetPath + "/file2").toFile().exists());76 }77 @Test78 public void testRetrieveFile() {79 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);80 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");81 assertTrue(Paths.get(remoteFilePath).toFile().exists());82 FtpMessage response = sftpClient.retrieveFile(getCommand(remoteFilePath), context);83 verifyMessage(response, GetCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");84 Assert.assertEquals(response.getPayload(GetCommandResult.class).getFile().getData(), inputFileAsString);85 }86 @Test87 public void testRetrieveFileToLocalPath() throws Exception {88 Path localDownloadFilePath = Paths.get(targetPath, "local_download.xml");89 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);90 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");91 assertTrue(Paths.get(remoteFilePath).toFile().exists());92 ftpMessage = sftpClient.retrieveFile(getCommand(remoteFilePath, localDownloadFilePath.toString()), context);93 verifyMessage(ftpMessage, GetCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");94 Assert.assertEquals(inputFileAsString,95 new String(Files.readAllBytes(localDownloadFilePath), "UTF-8"));96 }97 @Test98 public void testRetrieveFileToLocalPathWithoutFilename() throws Exception {99 Path localDownloadFilePath = Paths.get(targetPath, "local_download.xml");100 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, targetPath + "/"), context);101 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");102 assertTrue(Paths.get(remoteFilePath).toFile().exists());103 ftpMessage = sftpClient.retrieveFile(getCommand(remoteFilePath, localDownloadFilePath.toString()), context);104 verifyMessage(ftpMessage, GetCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");105 Assert.assertEquals(inputFileAsString,106 new String(Files.readAllBytes(localDownloadFilePath), "UTF-8"));107 }108 @Test109 public void testDeleteFile() {110 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);111 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");112 assertTrue(Paths.get(remoteFilePath).toFile().exists());113 ftpMessage = sftpClient.deleteFile(deleteCommand(remoteFilePath), context);114 verifyMessage(ftpMessage, DeleteCommandResult.class, FILE_ACTION_OK, "Delete file complete");115 Assert.assertFalse(Paths.get(remoteFilePath).toFile().exists());116 }117 @Test118 public void testDeleteGlob() {119 String remoteFilePathCopy = remoteFilePath.replace(".xml", "_copy.xml");120 FtpMessage ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePath), context);121 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");122 ftpMessage = sftpClient.storeFile(putCommand(localFilePath, remoteFilePathCopy), context);123 verifyMessage(ftpMessage, PutCommandResult.class, CLOSING_DATA_CONNECTION, "Transfer complete");124 assertTrue(Paths.get(remoteFilePath).toFile().exists());125 assertTrue(Paths.get(remoteFilePathCopy).toFile().exists());126 ftpMessage = sftpClient.deleteFile(deleteCommand(targetPath + "/hello*.xml"), context);127 verifyMessage(ftpMessage, DeleteCommandResult.class, FILE_ACTION_OK, "Delete file complete");128 Assert.assertFalse(Paths.get(remoteFilePath).toFile().exists());129 Assert.assertFalse(Paths.get(remoteFilePathCopy).toFile().exists());130 }131 @Test132 public void testDeleteDirIncludeCurrent() throws Exception {133 // the following dir structure and let is delete recursively via sftp:134 // tmpDir/135 // └── subDir136 // └── testfile137 Path tmpDir = Paths.get(targetPath, "tmpDir");138 Path subDir = Files.createDirectories(tmpDir.resolve("subDir"));139 writeToFile("test file\n", subDir.resolve("testfile"));140 assertTrue(Files.exists(tmpDir));141 DeleteCommand deleteCommand = deleteCommand(tmpDir.toAbsolutePath().toString());142 deleteCommand.setIncludeCurrent(true);143 FtpMessage ftpMessage = sftpClient.deleteFile(deleteCommand, context);144 verifyMessage(ftpMessage, DeleteCommandResult.class, FILE_ACTION_OK, "Delete file complete");145 Assert.assertFalse(Files.exists(tmpDir));146 }147 @Test148 public void testDeleteDir() throws Exception {149 // the following dir structure and let is delete recursively via sftp:150 // tmpDir/151 // └── subDir152 // └── testfile153 Path tmpDir = Paths.get(targetPath, "tmpDir");154 Path subDir = Files.createDirectories(tmpDir.resolve("subDir"));155 writeToFile("test file\n", subDir.resolve("testfile"));156 assertTrue(Files.exists(tmpDir));157 FtpMessage ftpMessage = sftpClient.deleteFile(deleteCommand(tmpDir.toAbsolutePath().toString()), context);158 verifyMessage(ftpMessage, DeleteCommandResult.class, FILE_ACTION_OK, "Delete file complete");159 assertTrue(tmpDir.toFile().list().length == 0);160 assertTrue(Files.exists(tmpDir));161 }162 @Test163 public void testDeleteNoMatches() {164 // this should not throw an exception, even though no files match165 FtpMessage ftpMessage = sftpClient.deleteFile(deleteCommand(targetPath + "/1234*1234"), context);166 verifyMessage(ftpMessage, DeleteCommandResult.class, FILE_ACTION_OK, "Delete file complete");167 }168 private SshServer startSftpMockServer() throws IOException {169 // SFTP mock server without authentication170 SshServer sshd = SshServer.setUpDefaultServer();171 sshd.setPort(2223);172 ClassLoadableResourceKeyPairProvider resourceKeyPairProvider = new ClassLoadableResourceKeyPairProvider();173 resourceKeyPairProvider.setResources(Collections.singletonList("com/consol/citrus/ssh/citrus.pem"));174 sshd.setKeyPairProvider(resourceKeyPairProvider);175 sshd.setPasswordAuthenticator((username, password, session) -> true);176 ArrayList<NamedFactory<Command>> subsystemFactories = new ArrayList<>();177 SftpSubsystemFactory sftpSubsystemFactory = new SftpSubsystemFactory.Builder().build();178 subsystemFactories.add(sftpSubsystemFactory);179 sshd.setSubsystemFactories(subsystemFactories);180 sshd.start();181 return sshd;182 }183 private SftpClient createSftpClient() {184 SftpEndpointConfiguration endpointConfiguration = new SftpEndpointConfiguration();185 endpointConfiguration.setHost("localhost");186 endpointConfiguration.setPort(2223);187 endpointConfiguration.setUser("remote-username");188 endpointConfiguration.setPassword("remote-password");189 SftpClient sftpClient = new SftpClient(endpointConfiguration);190 sftpClient.afterPropertiesSet();191 sftpClient.connectAndLogin();192 return sftpClient;193 }194 private void writeToFile(String fileContent, Path dir) throws IOException {195 try (BufferedWriter writer = Files.newBufferedWriter(dir, Charset.forName("UTF-8"))) {196 writer.write(fileContent, 0, fileContent.length());197 }...

Full Screen

Full Screen

createSftpClient

Using AI Code Generation

copy

Full Screen

1 public void testSftpClient() {2 variable("sftpHost", "localhost");3 variable("sftpPort", "22");4 variable("sftpUser", "admin");5 variable("sftpPassword", "admin");6 variable("sftpRemoteDirectory", "/home/admin");7 variable("sftpLocalDirectory", "/home/admin");8 variable("sftpFileName", "test.txt");9 variable("sftpRemoteFile", "sftpRemoteDirectory + '/' + sftpFileName");10 variable("sftpLocalFile", "sftpLocalDirectory + '/' + sftpFileName");11 variable("sftpFileContent", "Hello Citrus!");12 variable("sftpFileMode", "0644");13 variable("sftpFileOwner", "admin");14 variable("sftpFileGroup", "admin");15 variable("sftpFilePermission", "0644");16 variable("sftpFilePermissions", "0644");

Full Screen

Full Screen

createSftpClient

Using AI Code Generation

copy

Full Screen

1public void createSftpClient() {2 SftpClientTest sftpClientTest = new SftpClientTest();3 SftpClient sftpClient = sftpClientTest.createSftpClient();4}5public void createSftpClientWithCustomConfiguration() {6 SftpClientTest sftpClientTest = new SftpClientTest();7 SftpClient sftpClient = sftpClientTest.createSftpClient("customSftpClient");8}9public void createSftpClientWithCustomConfigurationAndCustomMessageConverter() {10 SftpClientTest sftpClientTest = new SftpClientTest();11 SftpClient sftpClient = sftpClientTest.createSftpClient("customSftpClient", new FtpMessageConverter());12}13public void createSftpClientWithCustomConfigurationAndCustomMessageConverter() {14 SftpClientTest sftpClientTest = new SftpClientTest();15 SftpClient sftpClient = sftpClientTest.createSftpClient("customSftpClient", new FtpMessageConverter());16}17public void createSftpClientWithCustomConfigurationAndCustomMessageConverter() {18 SftpClientTest sftpClientTest = new SftpClientTest();19 SftpClient sftpClient = sftpClientTest.createSftpClient("customSftpClient", new FtpMessageConverter());20}

Full Screen

Full Screen

createSftpClient

Using AI Code Generation

copy

Full Screen

1SftpClient sftpClient = SftpClient.createSftpClient();2SftpClient sftpClient = SftpClient.createSftpClient();3SftpClient sftpClient = SftpClient.createSftpClient();4SftpClient sftpClient = SftpClient.createSftpClient();5SftpClient sftpClient = SftpClient.createSftpClient();6SftpClient sftpClient = SftpClient.createSftpClient();7SftpClient sftpClient = SftpClient.createSftpClient();8SftpClient sftpClient = SftpClient.createSftpClient();9SftpClient sftpClient = SftpClient.createSftpClient();10SftpClient sftpClient = SftpClient.createSftpClient();

Full Screen

Full Screen

createSftpClient

Using AI Code Generation

copy

Full Screen

1public class SftpClientTest {2 public void sftpClientTest() {3 variable("localFile", "C:\\Users\\SFTP\\Desktop\\localFile.txt");4 variable("remoteFile", "C:\\Users\\SFTP\\Desktop\\remoteFile.txt");5 variable("remoteFile2", "C:\\Users\\SFTP\\Desktop\\remoteFile2.txt");6 variable("remoteFile3", "C:\\Users\\SFTP\\Desktop\\remoteFile3.txt");7 variable("remoteFile4", "C:\\Users\\SFTP\\Desktop\\remoteFile4.txt");8 variable("remoteFile5", "C:\\Users\\SFTP\\Desktop\\remoteFile5.txt");9 variable("remoteFile6", "C:\\Users\\SFTP\\Desktop\\remoteFile6.txt");10 variable("remoteFile7", "C:\\Users\\SFTP\\Desktop\\remoteFile7.txt");11 variable("remoteFile8", "C:\\Users\\SFTP\\Desktop\\remoteFile8.txt");12 variable("remoteFile9", "C:\\Users\\SFTP\\Desktop\\remoteFile9.txt");13 variable("remoteFile10", "C:\\Users\\SFTP\\Desktop\\remoteFile10.txt");14 variable("remoteFile11", "C:\\Users\\SFTP\\Desktop\\remoteFile11.txt");15 variable("remoteFile12", "C:\\Users\\SFTP\\Desktop\\remoteFile12.txt");16 variable("remoteFile13", "C:\\Users\\SFTP\\Desktop\\remoteFile13.txt");17 variable("remoteFile14", "C:\\Users\\SFTP\\Desktop\\remoteFile14.txt");18 variable("remoteFile15", "C:\\Users\\SFTP\\Desktop\\remoteFile15.txt");19 variable("remoteFile16", "C:\\Users\\SFTP\\Desktop\\remoteFile16.txt");20 variable("remoteFile17", "C:\\Users\\SFTP\\Desktop\\remoteFile17.txt");21 variable("remoteFile18", "C:\\Users\\SFTP\\Desktop\\remoteFile18.txt");22 variable("remoteFile19", "C:\\Users\\SFTP\\Desktop\\remoteFile19.txt");23 variable("remoteFile20", "C:\\Users\\SFTP\\Desktop\\remoteFile20.txt");24 variable("remoteFile21", "C:\\Users\\SFTP\\Desktop\\remote

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