Skip to main content

http_testing framework on top of pytest

Project description

HTTP_TESTING

Test Package version Supported Python versions

Description

This project aims to help to create e2e tests, by chaining http calls and verifications on target pages.

Concept

This project is built on pytest.

Each .py file in test represents several tests scenario on one target site, we can provide the site's hostname as a local variable, the framework know how to construct http call from that.

Each test function in the .py test file represent a scenario of test which is consisted by several steps. For example, test user's account page, first, we authenticate the client by post user's name and password, then access the account page to verify some values. Each step is described by calling the variable check which is a pytest fixture.

Tutorial

Install

pip install pytest-httptesting

Create test suite

# test/test_example.py
from http_testing.assertions import Assertions, NegativeAssertions
from http_testing.cookie import Cookie
from http_testing.page_checker import PageChecker
from http_testing.validators import Regex

host = "www.google.com"  # mandatory: used in the `check` fixture
scheme = "https"  # "https" by default
port = None  # None by default


def test_scenario_one(check: PageChecker):
    check(
        title="Senario One",
        path="/",
        should_find=Assertions(
            status_code=200,
            content=["<title>Google</title>"],
            headers={"Content-Type": "text/html; charset=ISO-8859-1"},
            cookies=[Cookie(name="AEC", value=Regex(r".*"))],
        ),
        should_not_find=NegativeAssertions(
            status_code=400,
            content=["groot"],
            headers={"nooooo": ""},
            cookies=[Cookie(name="nop", value="a")],
        ),
        timeout=10,  # you can pass additional kwargs to httpx request
    )

    assert check.previous_response.status_code == 200  # inspect previous response

Run test

$ pytest test --tb=no --no-header -v  # traceback is disabled because it is not very useful to anayse the functional error
============= test session starts =============
collected 1 item

test/test_example.py::test_scenario_one PASSED

============= 1 passed in 0.16s =============

Debug

In case of error, a temporary file will be generated, as shown in the short test summary info. It is a json file concluding response content, status code, headers and cookies.

$ pytest test --tb=no --no-header -v
============= test session starts =============
collected 1 item

test/test_example.py::test_scenario_one FAILED

============= short test summary info =============
FAILED test/test_example.py::test_scenario_one - AssertionError: Senario One - 'Content-Typessss':'text/html; charset=ISO-8859-1' not found in headers on page 'https://www.google.com/' - please check file '/tmp/tmptaowd2u5'
============= 1 failed in 1.22s =============

Advanced

Customize the http client configuration

It is possible to create a fixture http_client to create your own http client.

@pytest.fixture
def http_client():
    with Client(verify=False, cookies={"cookie_1": "cookie_value_1"}) as client:
        yield client

Customize the base url

It is possible to create a fixture base_url to override the default construction of base url.

from httpx import URL
@pytest.fixture
def base_url() -> URL:
    return URL("https://www.google.com")

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_httptesting-0.6.0.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_httptesting-0.6.0-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest_httptesting-0.6.0.tar.gz.

File metadata

  • Download URL: pytest_httptesting-0.6.0.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pytest_httptesting-0.6.0.tar.gz
Algorithm Hash digest
SHA256 697d67dcf153eca8502243d81bd5b84f2648ea3f9c624234de3a226f09928544
MD5 e15a9f50302c902104d4e95caed17721
BLAKE2b-256 ad865088fc785ce1bd61bd830e75206e935c8c1beae678d58ba560575a3370b7

See more details on using hashes here.

File details

Details for the file pytest_httptesting-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_httptesting-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 173c5113d45c61d56730f8e3d1dd8d6253326d1f875db112cbfb15b2c9cd75ce
MD5 0d0147de5d45a50f25b454cc33eaf330
BLAKE2b-256 1216d11f19c0a1b493270e004bc9f8f6d238dc3b3b3210de746a0941b874c320

See more details on using hashes here.

Supported by

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