我正在开发一个提供 FTPS 和 SFTP 服务的模块。
为了验证我的服务是否正常工作,我需要提供 FTPS 和/或 SFTP 请求的在线服务器。
有没有这样好的服务。
谢谢,维杰博尔
我正在开发一个提供 FTPS 和 SFTP 服务的模块。
为了验证我的服务是否正常工作,我需要提供 FTPS 和/或 SFTP 请求的在线服务器。
有没有这样好的服务。
谢谢,维杰博尔
有一次我遇到了类似的问题,因此编写了一个 JUnit 4 规则,在您的测试期间运行 SFTP 服务器。它被称为假 SFTP 服务器规则。以下是使用该规则的测试示例:
public class SomeTest {
@Rule
public final FakeSftpServerRule sftpServer = new FakeSftpServerRule();
@Test
public void testTextFile() {
//code that uploads the file
String fileContent = sftpServer.getFileContent("/directory/file.txt", UTF_8);
//verify content
}
}