This project is the adapter that allows using swagger-coverage tool in Python projects (PyTest+Requests).
Swagger-coverage gives a full picture about coverage of API tests (regression) based on OAS 2 (Swagger). By saying coverage we mean not a broad theme functionality, but presence (or absence) of calls defined by API methods, parameters, return codes or other conditions which corresponds specification of API.
Some more info about the project you can also
find HERE
All required steps are listed below. Additionally, you can find a working example here: allure-results-sample.
- python 3.6+
- java JDK 11+ (with JAVA_HOME environment variable set)
- Enable Long Paths (Windows only). Check the guide HERE
pip install swagger-coverage
API_DOCS_TYPE="swagger" # Note: "openapi" is default type of API docs
API_DOCS_VERSION="2.0" # Note: "3.0.0" is default version of API docs
API_DOCS_FORMAT="yaml" # Note: "json" is default format of API docs and output files
API_COVERAGE_REPORTS_DISABLED=True # Skip requests recording. No files will be saved to 'swagger-coverage-output' dir
DEBUG_MODE=True # Enable debug mode. All commandline logs will be printed to console (False by default)
import pytest
from swagger_coverage_py.reporter import CoverageReporter
from requests.auth import HTTPBasicAuth
@pytest.fixture(scope="session", autouse=True)
def setup_swagger_coverage():
reporter = CoverageReporter(api_name="my-project", host="http://my-project.com")
reporter.cleanup_input_files()
reporter.setup("/api/v1/resources/my_project/doc/swagger.json", auth=HTTPBasicAuth("username", "password"))
yield
reporter.generate_report()
import pytest
from swagger_coverage_py.reporter import CoverageReporter
from requests.auth import HTTPBasicAuth
@pytest.fixture(scope="session", autouse=True)
def setup_swagger_coverage():
reporter = CoverageReporter(api_name="petstore", host="https://petstore.swagger.io")
reporter.cleanup_input_files()
reporter.setup(path_to_swagger_json="/v2/swagger.json")
reporter2 = CoverageReporter(api_name="my-project", host="http://my-project.com")
reporter2.cleanup_input_files()
reporter2.setup(path_to_swagger_json="/api/v1/swagger.json", auth=HTTPBasicAuth("username", "password"))
yield
reporter.generate_report()
reporter2.generate_report()
import pytest
from swagger_coverage_py.reporter import CoverageReporter
@pytest.fixture(scope="session", autouse=True)
def setup_swagger_coverage():
reporter = CoverageReporter(api_name="petstore", host="https://petstore.swagger.io")
reporter.cleanup_input_files()
reporter.setup("/v2/swagger.yaml")
yield
reporter.generate_report()
api_name
- Define the name of the API. This name will be used to find a configuration file.
For APIs in this example the files must have namesswagger-coverage-config-petstore.json
andswagger-coverage-config-my-project.json
.
host
- The host of the API. It will be used to download a swagger.json file and to identify the CoverageListener output directory for each API.
cleanup_input_files()
- THis step deletes all files in the CoverageListener output directory (according to the target host)
path_to_swagger_json
- A second part of the HTTP link to your OpenApi/Swagger documentation in JSON format
Adaptedswagger-<api_name>.json
file will be created in your project root.
The "Swagger 2.0" format is completely compatible with this tool.
The "OpenAPI 3.0.2" format is partly compatible. "Tags coverage summary" calculation is not supported.
auth
- An authentication parameter for "requests" lib. Skip it if your API doesn't require authentication.
{
"rules": {
"status": {
"enable": true,
"ignore": [
"500"
],
"filter": []
},
"paths": {
"enable": true,
"ignore": [
"/user/{username}"
]
},
"only-declared-status": {
"enable": false
},
"exclude-deprecated": {
"enable": true
}
},
"writers": {
"html": {
"locale": "en",
"filename": "swagger-coverage-report-petstore.html"
}
}
}
The path
section is designed to exclude specific endpoints (all methods) from the final HTML report.
To do this, you need to set enable
parameter to true
and specify a list of endpoints (as you see them in the swagger doc) in the ignore
section.
Then these endpoints will be removed from the API doc before it is saved locally.
Note: Remove already downloaded API docs before running a new version of this lib.
Otherwise, the default behavior will be applied, and your report will be saved as
swagger-coverage-report.html
which may cause override in case you have multiple APIs
More examples of configuration options you can find in the Configuration options section of the documentation.
from requests import Response
from requests.auth import HTTPBasicAuth
from swagger_coverage_py.listener import CoverageListener
response: Response = CoverageListener(
method="get",
base_url="https://petstore.swagger.io",
raw_path="/v2/store/order/{orderId}",
uri_params={"orderId": 1},
auth=HTTPBasicAuth("username", "password"),
params={"type": "active"},
).response
6. Run your tests and open created swagger-coverage-report-<api_name>.html
report(s) in your browser.
Important remarks:
- Virtual environments are supported. Make sure your virtual environment directory has name
venv
. - To create report you have to run your test from the project root. Check that workind directory of your runner is
not
"<root>/test"
- The fixture
setup_swagger_coverage
setups required artifacts - During test execution the CoverageListener saves all requests as JSON files in swagger format to a subdirectory named
as a called host. (e.g.
swagger-coverage-output/petstore.swagger.io/
). - After all tests execution a
CoverageReporter().generate_report()
creates and saves new report(s) into your project root.
Swagger coverage is released under version 2.0 of the Apache License