0.0
The project is in a healthy, maintained state
A simple FTP wrapper for nice readability. Is compatible with spectre-core.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

Spectre FTP

Build Gem Version

This is a spectre module which provides FTP access functionality to the spectre framework.

Install

$ sudo gem install spectre-ftp

Configure

Add the module to your spectre.yml

include:
 - spectre/ftp

Configure some predefined FTP connection options in your environment file

ftp:
  some_ftp_conn:
    host: some.server.com
    username: dummy
    password: '*****'

Usage

With the FTP helper you can define FTP connection parameters in the environment file and use either ftp or sftp function in your specs.

Within the ftp or sftp block there are the following functions available:

Method Parameters Description
upload local_file, to: remote_file Uploads a file to the given destination
download remote_file, to: local_file Downloads a file from the server to disk
can_connect? none Returns true if a connection could be established
sftp 'some_ftp_conn' do # use connection name from config
  upload 'dummy.txt' # uploads file to the root dir of the FTP connection
  download 'dummy.txt' # downloads file to the current working directory
  download 'dummy.txt', to: '/tmp/dummy.txt' # downloads file to the given destination
end

You can also use the ftp and sftp function without configuring any connection in your environment file, by providing parameters to the function. This is helpful, when generating the connection parameters during the spec run.

sftp 'some.server.com', username: 'u123456', password: '$up3rSecr37' do # use connection name from config
  upload 'dummy.txt' # uploads file to the root dir of the FTP connection
  download 'dummy.txt' # downloads file to the current working directory
  download 'dummy.txt', to: '/tmp/dummy.txt' # downloads file to the given destination
end