gabbi


Namegabbi JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://github.com/cdent/gabbi
SummaryDeclarative HTTP testing library
upload_time2024-03-16 15:37:46
maintainer
docs_urlNone
authorChris Dent
requires_python>=3.6
licenseApache-2
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. image:: https://github.com/cdent/gabbi/workflows/tests/badge.svg
    :target: https://github.com/cdent/gabbi/actions
.. image:: https://readthedocs.org/projects/gabbi/badge/?version=latest
    :target: https://gabbi.readthedocs.io/en/latest/
    :alt: Documentation Status

Gabbi
=====

`Release Notes`_

Gabbi is a tool for running HTTP tests where requests and responses
are represented in a declarative YAML-based form. The simplest test
looks like this::

    tests:
    - name: A test
      GET: /api/resources/id

See the docs_ for more details on the many features and formats for
setting request headers and bodies and evaluating responses.

Gabbi is tested with Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and pypy3.

Tests can be run using `unittest`_ style test runners, `pytest`_
or from the command line with a `gabbi-run`_ script.

There is a `gabbi-demo`_ repository which provides a tutorial via
its commit history. The demo builds a simple API using gabbi to
facilitate test driven development.

.. _Release Notes: https://gabbi.readthedocs.io/en/latest/release.html
.. _docs: https://gabbi.readthedocs.io/
.. _gabbi-demo: https://github.com/cdent/gabbi-demo
.. _unittest: https://gabbi.readthedocs.io/en/latest/example.html#loader
.. _pytest: http://pytest.org/
.. _loader docs: https://gabbi.readthedocs.io/en/latest/example.html#pytest
.. _gabbi-run: https://gabbi.readthedocs.io/en/latest/runner.html

Purpose
-------

Gabbi works to bridge the gap between human readable YAML files that
represent HTTP requests and expected responses and the obscured realm of
Python-based, object-oriented unit tests in the style of the unittest
module and its derivatives.

Each YAML file represents an ordered list of HTTP requests along with
the expected responses. This allows a single file to represent a
process in the API being tested. For example:

* Create a resource.
* Retrieve a resource.
* Delete a resource.
* Retrieve a resource again to confirm it is gone.

At the same time it is still possible to ask gabbi to run just one
request. If it is in a sequence of tests, those tests prior to it in
the YAML file will be run (in order). In any single process any test
will only be run once. Concurrency is handled such that one file
runs in one process.

These features mean that it is possible to create tests that are
useful for both humans (as tools for improving and developing APIs)
and automated CI systems.

Testing and Developing Gabbi
----------------------------

To get started, after cloning the `repository`_, you should install the
development dependencies::

    $ pip install -r requirements-dev.txt

If you prefer to keep things isolated you can create a virtual
environment::

    $ virtualenv gabbi-venv
    $ . gabbi-venv/bin/activate
    $ pip install -r requirements-dev.txt

Gabbi is set up to be developed and tested using `tox`_ (installed via
``requirements-dev.txt``). To run the built-in tests (the YAML files
are in the directories ``gabbi/tests/gabbits_*`` and loaded by the file
``gabbi/test_*.py``), you call ``tox``::

    tox -epep8,py37

If you have the dependencies installed (or a warmed up
virtualenv) you can run the tests by hand and exit on the first
failure::

    python -m subunit.run discover -f gabbi | subunit2pyunit

Testing can be limited to individual modules by specifying them
after the tox invocation::

    tox -epep8,py37 -- test_driver test_handlers

If you wish to avoid running tests that connect to internet hosts,
set ``GABBI_SKIP_NETWORK`` to ``True``.

.. _tox: https://tox.readthedocs.io/
.. _repository: https://github.com/cdent/gabbi


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cdent/gabbi",
    "name": "gabbi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "Chris Dent",
    "author_email": "cdent@anticdent.org",
    "download_url": "https://files.pythonhosted.org/packages/4c/33/7f2e417e6610262b7181c46d0ce884df490d92cf9520fc1baefcd68697fe/gabbi-3.0.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/cdent/gabbi/workflows/tests/badge.svg\n    :target: https://github.com/cdent/gabbi/actions\n.. image:: https://readthedocs.org/projects/gabbi/badge/?version=latest\n    :target: https://gabbi.readthedocs.io/en/latest/\n    :alt: Documentation Status\n\nGabbi\n=====\n\n`Release Notes`_\n\nGabbi is a tool for running HTTP tests where requests and responses\nare represented in a declarative YAML-based form. The simplest test\nlooks like this::\n\n    tests:\n    - name: A test\n      GET: /api/resources/id\n\nSee the docs_ for more details on the many features and formats for\nsetting request headers and bodies and evaluating responses.\n\nGabbi is tested with Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and pypy3.\n\nTests can be run using `unittest`_ style test runners, `pytest`_\nor from the command line with a `gabbi-run`_ script.\n\nThere is a `gabbi-demo`_ repository which provides a tutorial via\nits commit history. The demo builds a simple API using gabbi to\nfacilitate test driven development.\n\n.. _Release Notes: https://gabbi.readthedocs.io/en/latest/release.html\n.. _docs: https://gabbi.readthedocs.io/\n.. _gabbi-demo: https://github.com/cdent/gabbi-demo\n.. _unittest: https://gabbi.readthedocs.io/en/latest/example.html#loader\n.. _pytest: http://pytest.org/\n.. _loader docs: https://gabbi.readthedocs.io/en/latest/example.html#pytest\n.. _gabbi-run: https://gabbi.readthedocs.io/en/latest/runner.html\n\nPurpose\n-------\n\nGabbi works to bridge the gap between human readable YAML files that\nrepresent HTTP requests and expected responses and the obscured realm of\nPython-based, object-oriented unit tests in the style of the unittest\nmodule and its derivatives.\n\nEach YAML file represents an ordered list of HTTP requests along with\nthe expected responses. This allows a single file to represent a\nprocess in the API being tested. For example:\n\n* Create a resource.\n* Retrieve a resource.\n* Delete a resource.\n* Retrieve a resource again to confirm it is gone.\n\nAt the same time it is still possible to ask gabbi to run just one\nrequest. If it is in a sequence of tests, those tests prior to it in\nthe YAML file will be run (in order). In any single process any test\nwill only be run once. Concurrency is handled such that one file\nruns in one process.\n\nThese features mean that it is possible to create tests that are\nuseful for both humans (as tools for improving and developing APIs)\nand automated CI systems.\n\nTesting and Developing Gabbi\n----------------------------\n\nTo get started, after cloning the `repository`_, you should install the\ndevelopment dependencies::\n\n    $ pip install -r requirements-dev.txt\n\nIf you prefer to keep things isolated you can create a virtual\nenvironment::\n\n    $ virtualenv gabbi-venv\n    $ . gabbi-venv/bin/activate\n    $ pip install -r requirements-dev.txt\n\nGabbi is set up to be developed and tested using `tox`_ (installed via\n``requirements-dev.txt``). To run the built-in tests (the YAML files\nare in the directories ``gabbi/tests/gabbits_*`` and loaded by the file\n``gabbi/test_*.py``), you call ``tox``::\n\n    tox -epep8,py37\n\nIf you have the dependencies installed (or a warmed up\nvirtualenv) you can run the tests by hand and exit on the first\nfailure::\n\n    python -m subunit.run discover -f gabbi | subunit2pyunit\n\nTesting can be limited to individual modules by specifying them\nafter the tox invocation::\n\n    tox -epep8,py37 -- test_driver test_handlers\n\nIf you wish to avoid running tests that connect to internet hosts,\nset ``GABBI_SKIP_NETWORK`` to ``True``.\n\n.. _tox: https://tox.readthedocs.io/\n.. _repository: https://github.com/cdent/gabbi\n\n",
    "bugtrack_url": null,
    "license": "Apache-2",
    "summary": "Declarative HTTP testing library",
    "version": "3.0.0",
    "project_urls": {
        "Homepage": "https://github.com/cdent/gabbi"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4334117ba68ebbfb87c8a9d2d2c32f34bce64ad08136cd50e2f77db3ca9c6f6",
                "md5": "a155863ed4d9c5ed2b054c46b42623d6",
                "sha256": "9d6d7c9b03757dc327f0670fed73e7fc05ccf8963bc55301275d4266d1b7b8c9"
            },
            "downloads": -1,
            "filename": "gabbi-3.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a155863ed4d9c5ed2b054c46b42623d6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 214012,
            "upload_time": "2024-03-16T15:37:43",
            "upload_time_iso_8601": "2024-03-16T15:37:43.603845Z",
            "url": "https://files.pythonhosted.org/packages/c4/33/4117ba68ebbfb87c8a9d2d2c32f34bce64ad08136cd50e2f77db3ca9c6f6/gabbi-3.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c337f2e417e6610262b7181c46d0ce884df490d92cf9520fc1baefcd68697fe",
                "md5": "0b50f3846a3fa9f508c9bb7426cbc61c",
                "sha256": "ccff4fb5bcacb262b3bf2ccf179d9ac54755b159ad70c498452069df8759f0fc"
            },
            "downloads": -1,
            "filename": "gabbi-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0b50f3846a3fa9f508c9bb7426cbc61c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 221386,
            "upload_time": "2024-03-16T15:37:46",
            "upload_time_iso_8601": "2024-03-16T15:37:46.392191Z",
            "url": "https://files.pythonhosted.org/packages/4c/33/7f2e417e6610262b7181c46d0ce884df490d92cf9520fc1baefcd68697fe/gabbi-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-16 15:37:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cdent",
    "github_project": "gabbi",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "gabbi"
}
        
Elapsed time: 0.21834s