Skip to main content

A Python module for using the Specmatic Library.

Project description

This is a Python library to run the Specmatic library. Specmatic is a contract driven development tool that allows us to turn OpenAPI contracts into executable specifications.

  • The specmatic python library is geared towards integrating Specmatic capabilities in PyTest tests. It provides three main function:
    • The ability to start and stop a python flask app in a test class
    • The ability to run specmatic in test mode against a local contract/spec file, or against a spec defined in a Central Contract Repository (as defined in specmatic.json).
    • The ability to stub out an api dependency using the specmatic stub feature.

NOTE: If you are using an IDE like PyCharm to run tests, please edit the test configuration and set the working directory to your project root directory.

  • To run Specmatic in test mode against a flask app, add the start_flask_app and specmatic_contract_test decorator functions on your test class:

    @specmatic_contract_test(host, port)
    @start_flask_app(app, host, port)
    class TestApiContract:
        @classmethod
        def teardown_class(cls):
            cls.flask_server.stop()
    
    • The @start_flask_app decorator adds an attribute 'flask_server' on the test class, which can be used in the teardown method to stop the flask app.
    • The @start_flask_app accepts an instance of your flask app and the host/port to run it on.
    • The @specmatic_contract_test accepts host/port of your flask app and the path to the specmatic.json file in your project.
    • Specmatic will look for a specmatic.json file in your project root directory. If you don't wish to use specmatic.json, you can also pass the path to the actual contract/specification file to the specmatic_contract_test decorator.
    • You can run this test class either from your IDE or from command line (from your project root directory) :
      pytest test -v -s
      Click here to learn more about Specmatic test mode.
  • If you want to stub out a service dependency, add the specmatic_stub decorator on top of the start_flask_app.

    @specmatic_contract_test(host, port)
    @specmatic_stub(stub_host, stub_port, [expectation_json_file])
    @start_flask_app(app, host, port)
    class TestApiContract:
        @classmethod
        def teardown_class(cls):
        cls.flask_server.stop()
        cls.stub.stop()
    
    • The specmatic_stub decorator adds an attribute 'stub' on the test class, which can be used in the teardown method to stop the stub process.
    • The @specmatic_stub accepts host/port on which the dependency is expected to be running.
    • It also accepts a list of expectation json file paths which can be used to return stubbed responses.
    • The Specmatic stub will look for a specmatic.json file in your project root directory. If you don't wish to use specmatic.json, you can also pass the path to the actual contract/specification file to the specmatic_stub decorator.
    • Run this test class either from your IDE or from command line (from your project root directory) :
      pytest test -v -s
      Click here to learn more about Specmatic stub mode and using expectation json files.

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

specmatic-python-0.2.2.tar.gz (79.1 MB view details)

Uploaded Source

Built Distribution

specmatic_python-0.2.2-py3-none-any.whl (79.1 MB view details)

Uploaded Python 3

File details

Details for the file specmatic-python-0.2.2.tar.gz.

File metadata

  • Download URL: specmatic-python-0.2.2.tar.gz
  • Upload date:
  • Size: 79.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for specmatic-python-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a93edb168ba197795fe043455c3f43d3c32fd9e7b0d1faf40a939fcac868b929
MD5 c9f8bab79942b9329175d307c0ff4bac
BLAKE2b-256 e72d5b4af75a5cdc8663e11a506918e631fcf208129d32989ea4eebda15081fe

See more details on using hashes here.

File details

Details for the file specmatic_python-0.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for specmatic_python-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 06c5fc91db7805fcd8a18d2929c26ffc6c36bf5b09e6f479ccb5941191093e95
MD5 2737fc2ad4fa8460939df7dadf09fefd
BLAKE2b-256 0c9a12f7c38b062bce644e1aa6c2f5efb2ab6d5c99c70aff3dbfa45848e39162

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