summaryrefslogtreecommitdiffstats
path: root/test/conftest.py
blob: ac0a7c553d86cd18a65c711a8ea6724c92544c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import sys
import os

import pytest

sys.path.append(os.path.join(os.path.dirname(__file__), '.'))

from pyhttpd.env import HttpdTestEnv

def pytest_report_header(config, startdir):
    env = HttpdTestEnv()
    return f"[apache httpd: {env.get_httpd_version()}, mpm: {env.mpm_module}, {env.prefix}]"

def pytest_addoption(parser):
    parser.addoption("--repeat", action="store", type=int, default=1,
                     help='Number of times to repeat each test')
    parser.addoption("--all", action="store_true")


def pytest_generate_tests(metafunc):
    if "repeat" in metafunc.fixturenames:
        count = int(metafunc.config.getoption("repeat"))
        metafunc.fixturenames.append('tmp_ct')
        metafunc.parametrize('repeat', range(count))


@pytest.fixture(autouse=True, scope="function")
def _function_scope(env, request):
    env.set_current_test_name(request.node.name)
    yield
    env.check_error_log()
    env.set_current_test_name(None)


@pytest.fixture(autouse=True, scope="module")
def _module_scope(env):
    yield
    env.check_error_log()


@pytest.fixture(autouse=True, scope="package")
def _package_scope(env):
    env.httpd_error_log.clear_ignored_matches()
    env.httpd_error_log.clear_ignored_lognos()
    yield
    assert env.apache_stop() == 0
    env.check_error_log()