fake_ftp icon indicating copy to clipboard operation
fake_ftp copied to clipboard

A fake FTP server for use with ruby tests

Results 7 fake_ftp issues
Sort by recently updated
recently updated
newest added

As is: When a client triggers EOF in server to close connection (in Ruby client `ftp.close`) the server doesn't handle this signal and forces the client to wait on read....

Because the FTP command is splitted by spaces, file paths with spaces are not supported, because the Retr command only uses the first part of the path until the first...

Until PR #42 was merged, String, as well as Pathname objects, were supported just fine. Now, just String is supported, because Pathname object does not support #start_with? method. Therefore, this...

#42 added basic directory support that works fine as long as you only use a single directory. But if you upload files to different directories, `FakeFtp::Server#files` would list all files...

Will using the gem we realised that some of our listing commands do not behave as they are working against actual FTP servers. ```ruby connection = Net::FTP.new('host', 'user', 'password') connection.nlst('unprocessed')...

Hello, I have an issue with this gem : - In production, `nlst` command return an array like `["GDV_1_STOCK_20171028_020152_049.csv"]` - In tests with your fake_ftp, it returns absolute path like...