A mock backend for testing swift.
Project description
🐉 Installation
Install from PyPI:
$ pip install swiftmock
🐉 Usage
Importing directly
You can use swiftmock directly in your code:
from swiftmock.swift import MockConnection
with MockConnection() as conn:
conn.put_container("fake-container")
conn.put_object("fake-container", "path/to/object", b"contents")
header, contents = conn.get_object("fake-container", "path/to/object")
assert contents == b"contents"
Using with Pytest
You can also use this library as a pytest plugin.
def my_test_using_swift(mock_swift):
# optional, the mock automatically replaces *swiftclient.client.Connection*
# so that it automatically returns the mocked instance
mock_swift.put_container("fake-container")
with pytest.assert_raises(swiftclient.exceptions.ClientException):
mock_swift.get_object("fake-container", "non/existent/object")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
swiftmock-0.0.1.tar.gz
(22.6 kB
view hashes)
Built Distribution
Close
Hashes for swiftmock-0.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7437702b0ef7917fe4ec3e8afca787aee47c45dd989ed61bf9dfa7db4b60d06 |
|
MD5 | aaea15c4f053e5dd1c0d88760060601e |
|
BLAKE2b-256 | fdf0a8bee767a18511a6eebba25b0d849685cab451fea2a76ff5b75107c536cd |