Skip to main content

Generate a stub from a swagger file

Project description

Travis status Code issues Join the chat at https://gitter.im/Trax-air/swagger-stub Dependency Status https://img.shields.io/pypi/v/swagger-stub.svg https://img.shields.io/pypi/dw/swagger-stub.svg

swagger-stub

Swagger-stub create automatically a stub of your swagger REST API. This stub can be used anywhere you want like in a pytest fixture for your unit test.

In addition of mocking your API, you can mock some call, and check every call that have been made to the API.

Example Usage

import pytest
import requests

from swagger_stub import swagger_stub

# This is the fixture of your stub
# You only need to specify the path of the swagger file and the address
# where you want to bind your stub.
@pytest.fixture
def test_stub():
    return swagger_stub([('swagger.yaml', 'http://foo.com')]).next()

# Then you can use this fixture anywhere you want like your API is really running.
def test_swagger_stub(test_stub):
    # Get a definition example
    test_stub.definitions['Foo']

    # Check a simple call
    response = requests.get('http://foo.com/v1/bar/')
    assert response.status_code == 200
    assert response.json() == {
      'foo': 'bar'
    }

    # Check that an invalid body cause an error
    response = requests.post('http://foo.com/v1/bar/', data='invalid data')
    assert response.status_code == 400

    # Mock a call
    test_stub.add_mock_call('get', '/test', {'mock': 'call'})
    response = requests.get('http://foo.com/v1/test')
    assert response.json() == {'mock': 'call'}

    # Set some side_effect like in the mock library
    test_stub.add_mock_side_effect('get', '/iter', [{'test': '1'}, {'test': '2'}, {'test': '3'}])
    response = requests.get('http://foo.com/v1/iter')
    assert response.json() == {'test': '1'}
    response = requests.get('http://foo.com/v1/iter')
    assert response.json() == {'test': '2'}
    response = requests.get('http://foo.com/v1/iter')
    assert response.json() == {'test': '3'}

    # This side effect will raise a custom error
    test_stub.add_mock_side_effect('get', '/error', Exception)

    with pytest.raises(Exception):
        response = requests.get('http://foo.com/v1/error')

Documentation

More documentation is available at https://swagger-stub.readthedocs.org/en/latest/.

Setup

make install or pip install swagger-stub

License

swagger-stub is licensed under http://opensource.org/licenses/MIT.

History

0.2.1 (2016-6-6)

  • Fix repeated base path.

0.2.0 (2016-5-2)

  • Add access to definition example.

0.1.1 (2016-1-31)

  • Change license to MIT.

0.1 (2016-1-29)

  • First release on PyPI.

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

swagger_stub-0.2.1.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

swagger_stub-0.2.1-py2.py3-none-any.whl (7.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file swagger_stub-0.2.1.tar.gz.

File metadata

File hashes

Hashes for swagger_stub-0.2.1.tar.gz
Algorithm Hash digest
SHA256 6ff47e489e183a5f981de9554228750a738cd18aaf2c7b140bff3680a0317db1
MD5 d0fb1c6d43e94d4089bef807289db56f
BLAKE2b-256 f0dc458bad9fbf7aa5747581ae0bde76fc087a61e2aed7852d269c6872b5a50c

See more details on using hashes here.

File details

Details for the file swagger_stub-0.2.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for swagger_stub-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 84eb254ccf94f6adb67a3a658e7f3f5a2d5007b3e32784b9b6461cde54c36c23
MD5 febc9480fd96cf802da8e131354c5287
BLAKE2b-256 214cb41ed3f24142f3c8655286aeef928666c50708af4c075ec5173e8eca8b2e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page