Skip to main content

Soft asserts for pytest

Project description

Pytest soft asserts.

PyPI PyPI - Python Version PyPI - License PyPI - Downloads PyPI - Downloads Coverage Status GitHub code size in bytes GitHub last commit DeepSource

Supported asserts:

Assert Description Example
assert_true(condition, message=None) Verify that condition is True soft_asserts.assert_true(a == b)
assert_false(condition, message=None) Verify that condition is False soft_asserts.assert_true(a == b)
assert_equal(first, second, message=None) Verify that first is equal to second soft_asserts.assert_equal(a, b)
assert_not_equal(first, second, message=None) Verify that first is not equal to second soft_asserts.assert_not_equal(a, b)
assert_is(first, second, message=None) Verify that first and second are the same object soft_asserts.assert_is(a, b)
assert_is_not(first, second, message=None) Verify that first and second are not the same object soft_asserts.assert_is_not(a, b)
assert_is_none(obj, message=None) Verify that obj is None soft_asserts.assert_is_none(a)
assert_is_not_none(obj, message=None) Verify that obj is not None soft_asserts.assert_is_not_none(a)
assert_in(obj, container, message=None) Verify that obj is in container soft_asserts.assert_in(a, [a, b, c])
assert_not_in(obj, container, message=None) Verify that obj is not in container soft_asserts.assert_not_in(a, [b, c])
assert_is_instance(obj, cls, message=None) Verify that obj is instance of cls soft_asserts.assert_is_instance(a, A)
assert_is_not_instance(obj, cls, message=None) Verify that obj is not instance of cls soft_asserts.assert_is_not_instance(a, B)
assert_almost_equal(first, second, delta, message=None) Verify that first is almost equal to second
and the different is equal or less to delta
soft_asserts.assert_almost_equal(1.001, 1.002, 0.1)
assert_raises(exception, method: Callable, *args, **kwargs) Verify that method execution raise exception soft_asserts.assert_raises(TypeError, sum, 'a', 2)
assert_raises_with(exception, message=None) Verify that execution in 'with' block raise exception with soft_asserts.assert_raised_with(ValueError):
    raise ValueError(ERROR_MESSAGE_1)

In the end of each test, the soft asserts will be verified and the test will be marked as failed if any of the asserts failed.
To verify the soft asserts in the middle of the test, call soft_asserts.assert_all().

assert_all() will raise AssertionError if any of the asserts failed.


#### Steps

Each testing section can be divided to steps.
The meaning of this is that if one of the asserts in a step failed,
then the step will be entered to list of failure steps and next test can be skipped
if it is depended on the failed step.

Example:

To make test be skipped if step failed, a custom marker should be created.

This is an example of such custom marker, but user can create its own custom marker.

In conftest.py file:

import pytest


@pytest.fixture(autouse=True)
def run_before_test(request):
    markers = request.node.own_markers

    for marker in markers:
        if marker.name == 'soft_asserts':
            marker_params = marker.kwargs
            soft_asserts = marker_params['soft_asserts']
            skip_steps = marker_params['skip_steps']

            for step in skip_steps:
                if soft_asserts.is_step_in_failure_steps(step):
                    pytest.skip(f'Skipped because [{step}] failed.')
import pytest
from nrt_pytest_soft_asserts.soft_asserts import SoftAsserts

soft_asserts = SoftAsserts()

STEP_1 = 'step_1'
STEP_2 = 'step_2'

def test_assert_with_steps():
    soft_asserts.set_step(STEP_1)
    soft_asserts.assert_true(False)
    
    soft_asserts.set_step(STEP_2) 
    soft_asserts.assert_true(False)
    
    # From this code section steps will not be attached to failure asserts
    soft_asserts.unset_step()
    soft_asserts.assert_true(False)
    
    soft_asserts.assert_all()


@pytest.mark.soft_asserts(soft_asserts=soft_asserts, skip_steps=[STEP_1])
def test_skip_if_step_1_fail():
    soft_asserts.assert_true(True)

@pytest.mark.soft_asserts(soft_asserts=soft_asserts, skip_steps=[STEP_2])
def test_skip_if_step_2_fail():
    soft_asserts.assert_true(True)

Print error on each failed assert

Each failed can be printed.
This can be done by adding logger or my adding a print method.

In case a logger will be added to soft asserts, then logger.error(message) will be used.

In case a print method will be added to soft asserts, then print_method(message) will be used.

logger and print method cannot be added together.

logger example:

import logging
from nrt_pytest_soft_asserts.soft_asserts import SoftAsserts


logger = logging.getLogger('test')

soft_asserts = SoftAsserts()

# logger will be used to print message after each assert fail.
soft_asserts.set_logger(logger)


def test_assert_true_fail():
    i = 1
    j = 2
    # logger.error() will print messages to console for each assert that fails
    soft_asserts.assert_true(i + j == 5)
    # f'{i} is different from {j}' will be printed by logger.error() after assert will fail
    soft_asserts.assert_equal(i, j, f'{i} is different from {j}')
    soft_asserts.assert_all()

print method example:

from nrt_pytest_soft_asserts.soft_asserts import SoftAsserts

def print_method(message):
    print(message)

soft_asserts = SoftAsserts()

# print_method will be used to print message after each assert fail.
soft_asserts.set_print_method(print_method)


def test_assert_true_fail():
    i = 1
    j = 2
    # print_method will print messages to console for each assert that fails
    soft_asserts.assert_true(i + j == 5)
    # f'{i} is different from {j}' will be printed by print_method after assert will fail
    soft_asserts.assert_equal(i, j, f'{i} is different from {j}')
    soft_asserts.assert_all()

Wiki: https://github.com/etuzon/python-nrt-pytest-soft-asserts/wiki

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

nrt-pytest-soft-asserts-1.0.2.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

nrt_pytest_soft_asserts-1.0.2-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file nrt-pytest-soft-asserts-1.0.2.tar.gz.

File metadata

File hashes

Hashes for nrt-pytest-soft-asserts-1.0.2.tar.gz
Algorithm Hash digest
SHA256 79b11cdd11b922ba887f5e23b7b35843980584f7edc96105ccf908370f2715f1
MD5 3251d5028207aab3d6fb258221768c94
BLAKE2b-256 8ece8fe1b4e2bc28b2b9f3c02699dced254dee3efcda7a7d6939dc7f2299cd3e

See more details on using hashes here.

File details

Details for the file nrt_pytest_soft_asserts-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for nrt_pytest_soft_asserts-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 45ed1a2ca256a86dca2c029c4977730eb44233555e916cbcf19ad0287cce19b2
MD5 f6d81a52a509dd2e11b2b5f060b87f7c
BLAKE2b-256 904bf966cb7a82e5e980e5fe6596cd43092720b98ce9a916629f42ad1204a1e2

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