Testing sftp connections in Ruby

I have an application that makes extensive use of SFTP.

I would like to write integration tests for it, are there libraries that implement the functionality of the SFTP server in Ruby?

+4
source share
2 answers

Have you tried https://rubygems.org/search?utf8=%E2%9C%93&query=sftp ?

An implementation of the SFTP protocol is implemented here: https://github.com/georgediaz88/fun_sftp and some lib for falsifying SFTP: <a2>

0
source

Take a look at net-sftp , there is also a bunch of related repos https://github.com/net-ssh?tab=repositories

0
source

All Articles