Metadata-Version: 2.1
Name: swagger-tester
Version: 0.2.12
Summary: Automatically test your swagger API
Home-page: https://github.com/Trax-air/swagger-tester
Author: Cyprien Guillemot
Author-email: cyprien.guillemot@gmail.com
License: MIT
Keywords: swagger,tester,API,REST,swagger-tester
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: swagger-parser (>=0.1.11)
Requires-Dist: connexion (>=1.0.121)
Requires-Dist: requests (~=2.11)

.. image:: https://travis-ci.org/Trax-air/swagger-tester.svg?branch=master
   :alt: Travis status
   :target: https://travis-ci.org/Trax-air/swagger-tester
.. image:: https://badges.gitter.im/Trax-air/swagger-tester.svg
  :alt: Join the chat at https://gitter.im/Trax-air/swagger-tester
  :target: https://gitter.im/Trax-air/swagger-tester?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
.. image:: https://img.shields.io/pypi/v/swagger-tester.svg
    :target: https://pypi.python.org/pypi/swagger-tester/

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.

Related Libraries
-----------------
You may find related libraries to this one:

- https://github.com/Trax-air/swagger-stub: A stub you can use in your client's unit tests. All the HTTP calls to your swagger API are mocked by default. You can also add your own mocked_calls in your test functions.
- https://github.com/Trax-air/swagger-aggregator: Aggregate several swagger specs into one. Useful for your API gateways!
- https://github.com/Trax-air/swagger-parser: A helper that parses swagger specs. You can access the HTTP actions / paths and some example data

Example Usage
-------------

.. code:: python

 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.


