Skip to main content

A pytest plugin to record HTTP(S) requests with stack trace

Project description

pytest-httpdbg

A pytest plugin to record HTTP(S) requests with stack trace.

installation

pip install pytest-httpdbg

usage

pytest custom options

  --httpdbg             record HTTP(S) requests
  --httpdbg-dir=HTTPDBG_DIR
                        save httpdbg traces in a directory
  --httpdbg-no-clean    do not clean the httpdbg directory
  --httpdbg-initiator=HTTPDBG_INITIATOR
                        add a new initiator (package) for httpdbg

option httpdbg

Enables the record of the HTTP requests.

option httpdbg-dir

Indicates where to save the log files.

option httpdbg-no-clean

Does not clean existing log files if the log directory is not empty.

option http-initiator

An initiator is the function/method that is at the origin of the HTTP requests. By default, we already support some packages but you can add your own initiators.

To add a new package in the list of initiators, you can use the http-initiator command line argument.

You can use any package as an initiator, this is not limited to HTTP requests.

test report

When the test is finished (teardown step included), one log file in markdown format is written. The path to this log file is stashed in the item when the test starts (before the setup step), even if the file not exists yet.

pytest-html

You can copy the following code in your top-level conftest.py to include the logs into your pytest-html report.

import os

import pytest

from pytest_httpdbg import httpdbg_record_filename


@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_makereport(item, call):
    pytest_html = item.config.pluginmanager.getplugin("html")
    outcome = yield
    report = outcome.get_result()    
    extra = getattr(report, "extra", [])

    if call.when == "setup":
        if httpdbg_record_filename in item.stash:
            extra.append(
                pytest_html.extras.url(
                    os.path.basename(item.stash[httpdbg_record_filename]), name="HTTPDBG"
                )
            )
            report.extra = extra

This example works if you use the same directory for the html test report file and the httpdbg logs.

pytest demo/ --httpdbg --httpdbg-dir report --html=report/report.html

If this is not the case, you must adapt it to your configuration.

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

pytest-httpdbg-0.3.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

pytest_httpdbg-0.3.1-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file pytest-httpdbg-0.3.1.tar.gz.

File metadata

  • Download URL: pytest-httpdbg-0.3.1.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pytest-httpdbg-0.3.1.tar.gz
Algorithm Hash digest
SHA256 211205429c879b7c75d4daf0444e5017a0d6ec5de6b732da07f518b1478656fe
MD5 b79ead348873e81bf95c82aa6fc99339
BLAKE2b-256 5c49632018a1a973b7c55078083c8621ca8740ffba8bd805d2ddefc9c5d10c21

See more details on using hashes here.

File details

Details for the file pytest_httpdbg-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: pytest_httpdbg-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pytest_httpdbg-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 50e4a475b32d2f4359985e0c10a81158ba4ad4d5e4b1beb90be3f42f75463e24
MD5 987d2b59a00f8787af6bc8d2f80543c0
BLAKE2b-256 e34378097efce39dcbdf39f972f5da0d18cb9d2978b8b845135ddd4cc2483907

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page