Skip to main content

Automatically test your swagger API

Project description

Travis status Join the chat at https://gitter.im/Trax-air/swagger-tester https://img.shields.io/pypi/v/swagger-tester.svg

swagger-tester

Swagger-tester will test automatically your swagger API. Swagger API made with connexion (https://github.com/zalando/connexion) are supported directly without running the API server. In the case you use connexion it will automatically run a test server from your swagger file.

To run the test, swagger-tester will detect every path and actions of your API. And for each, it will send a request and check if the response match the swagger file specification.

Example Usage

from swagger_tester import swagger_test

 # Dict containing the error you don't want to raise.
 # By default, every status_code over other than 1xx, 2xx or 3xx
 # will be considered as an error.
 authorize_error = {
       'post': {
           '/pet/{petId}': [200],
           '/pet': [200]
       },
       'put': {
           '/user/{username}': [200],
           '/pet': [200]
       },
       'delete': {
           '/pet/{petId}': [200],
           '/store/order/{orderId}': [200],
           '/user/{username}': [200]
       }
   }

 # Run the test with connexion
 # An AssertionError will be raise in case of error.
 swagger_test('path_to_your_swagger.yaml', authorize_error=authorize_error)

 # Or if you have a running API
 swagger_test(app_url='http://petstore.swagger.io/v2', authorize_error=authorize_error)

Documentation

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

Setup

make install or pip install swagger-tester

License

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

History

0.2.7 (2016-11-22)

  • TODO

0.2.6 (2016-5-20)

  • Fix repeated base path bug

0.2.5 (2016-3-25)

  • Add support for headers parameters.

0.2.4 (2016-3-23)

  • Improve the check of status code when ‘default’ is in the specification.

0.2.3 (2016-2-10)

  • Fix some errors (like file upload).

0.2.2 (2016-2-3)

  • Fix validation of standard types.

0.2.1 (2016-1-31)

  • Change license to MIT.

0.2.0 (2016-1-31)

  • Now support swagger APIs not made with connexion.

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_tester-0.2.12.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

swagger_tester-0.2.12-py2.py3-none-any.whl (7.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file swagger_tester-0.2.12.tar.gz.

File metadata

File hashes

Hashes for swagger_tester-0.2.12.tar.gz
Algorithm Hash digest
SHA256 574b05d2b7d062c00093a7a688edca54a5c3c5cc3ce7f7074ef4e51087f957e6
MD5 e6c564111135351a3fbadec5c997fc41
BLAKE2b-256 60af1d4df1984f255140b77e713e41260c414a030401f9babb7b6f96a5363a6f

See more details on using hashes here.

File details

Details for the file swagger_tester-0.2.12-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for swagger_tester-0.2.12-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b251d25348c4fde95d2e6ac207d39853f2b556d195827e4f5ff9b3f54c710ed3
MD5 72652f9b10c370beb7957b8850699d47
BLAKE2b-256 263b53085240ecd2bfae020f141ab14fc7bc537c461e799fdd8d8cb6d1570017

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