py.test plugin to locally test sftp server connections.
Project description
pytest-sftpserver is a plugin for pytest that provides a local SFTP-Server fixture.
The SFTP-Server provided by this fixture serves content not from files but directly from Python objects.
Quickstart
Assume you want to test a function that downloads a file from an SFTP-Server:
from contextlib import closing
import paramiko
def get_sftp_file(host, port, username, password, path):
with closing(paramiko.Transport((host, port))) as transport:
transport.connect(username=username, password=password)
with closing(paramiko.SFTPClient.from_transport(transport)) as sftpclient:
with sftpclient.open(path, "r") as sftp_file:
return sftp_file.read()
This plugin allows to test such functions without having to spin up an external SFTP-Server by providing a pytest fixture called sftpserver. You use it simply by adding a parameter named sftpserver to your test function:
def test_sftp_fetch(sftpserver):
with sftpserver.serve_content({'a_dir': {'somefile.txt': "File content"}}):
assert get_sftp_file(sftpserver.host, sftpserver.port, "user",
"pw", "/a_dir/somefile.txt") == "File content"
As can be seen from this example sftpserver serves content directly from python objects instead of files.
Installation
pip install pytest-sftpserver
Supported Python versions
This package supports the following Python versions:
2.6 - 2.7
3.2 - 3.4
TODO
Add more documentation
Add more usage examples
Add TODOs :)
Version History
1.1.2 - 2015-06-01
Fixed a bug in stat size calculation (#4)
Fixed mkdir() overwriting existing content (#5)
Thanks to @zerok for both bug reports and accompanying tests.
1.1.1 - 2015-04-04
Fixed broken chmod() behaviour for non-existing ‘files’ (Thanks @dundeemt)
1.1.0 - 2014-10-15
Fixed broken stat() behaviour for non-existing ‘files’
Slightly increased test coverage
1.0.2 - 2014-07-27
Fixed broken test on Python 2.6
1.0.1 - 2014-07-27
Added Python 3.2 support
Clened up tox configuration
1.0.0 - 2014-07-18
Initial release
License
Licensed unter the MIT License. See file LICENSE.
Inspiration
The implementation and idea for this plugin is in part based upon:
The Twisted Conch in 60 Seconds series (although I ended up not using twisted, this was very helpful understanding SFTP internals)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest-sftpserver-1.1.2.tar.gz
.
File metadata
- Download URL: pytest-sftpserver-1.1.2.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b84fee01a9c0137e32290497851cbfb2c1553be587907d609568dadc8a3d16ed |
|
MD5 | 62dfb2a52ad9c06b0eda444fbd8b1909 |
|
BLAKE2b-256 | 970af038bc1fd93f333ad61f34ac3c430b22b1ccd66edfb07fd04766bd60d79a |
File details
Details for the file pytest_sftpserver-1.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_sftpserver-1.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d38d1bec1b8dc1504cc395a6ce43238274bdc90c8670b3a5419e9a2e3a04b1f0 |
|
MD5 | a463e9a93639eed1826efafdae63758b |
|
BLAKE2b-256 | 52d23ebd8230d4a8a8c0a9cbb40ee920bbc432726f80c59200d46f3eb017694c |