mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
b98f9b46de
The new marker needs_ipaapi is used to mark tests that needs an initialized API (ipalib.api) or some sort of other API services (running LDAP server) to work. Some packages use api.Command or api.Backend on module level. They are not marked but rather skipped entirely. A new option ``skip-ipaapi`` is added to skip all API based tests. With the option, only simple unit tests are executed. As of now, freeIPA contains more than 500 unit tests that can be executed in about 5 seconds. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
137 lines
3.8 KiB
Python
137 lines
3.8 KiB
Python
#
|
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
|
#
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import pprint
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
from ipalib import api
|
|
from ipalib.cli import cli_plugins
|
|
|
|
try:
|
|
import ipaplatform # pylint: disable=unused-import
|
|
except ImportError:
|
|
ipaplatform = None
|
|
try:
|
|
import ipaserver
|
|
from ipaserver.install import installutils
|
|
except ImportError:
|
|
ipaserver = None
|
|
|
|
HERE = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
pytest_plugins = [
|
|
'ipatests.pytest_plugins.additional_config',
|
|
'ipatests.pytest_plugins.beakerlib',
|
|
'ipatests.pytest_plugins.declarative',
|
|
'ipatests.pytest_plugins.nose_compat',
|
|
]
|
|
# The integration plugin is not available in client-only builds.
|
|
if ipaserver is not None:
|
|
pytest_plugins.append('ipatests.pytest_plugins.integration')
|
|
|
|
|
|
MARKERS = [
|
|
'tier0: basic unit tests and critical functionality',
|
|
'tier1: functional API tests',
|
|
'cs_acceptance: Acceptance test suite for Dogtag Certificate Server',
|
|
'ds_acceptance: Acceptance test suite for 389 Directory Server',
|
|
'skip_ipaclient_unittest: Skip in ipaclient unittest mode',
|
|
'needs_ipaapi: Test needs IPA API',
|
|
]
|
|
|
|
|
|
NO_RECURSE_DIRS = [
|
|
# build directories
|
|
'ipaclient/build',
|
|
'ipalib/build',
|
|
'ipaplatform/build',
|
|
'ipapython/build',
|
|
'ipaserver/build',
|
|
'ipatests/build',
|
|
# install/share/wsgi.py
|
|
'install/share',
|
|
# integration plugin imports from ipaplatform
|
|
'ipatests/pytest_plugins',
|
|
]
|
|
|
|
|
|
INIVALUES = {
|
|
'python_classes': ['test_', 'Test'],
|
|
'python_files': ['test_*.py'],
|
|
'python_functions': ['test_*'],
|
|
}
|
|
|
|
|
|
def pytest_configure(config):
|
|
# add pytest markers
|
|
for marker in MARKERS:
|
|
config.addinivalue_line('markers', marker)
|
|
|
|
# do not recurse into build directories or install/share directory.
|
|
for norecursedir in NO_RECURSE_DIRS:
|
|
config.addinivalue_line('norecursedirs', norecursedir)
|
|
|
|
# addinivalue_line() adds duplicated entries and does not remove existing.
|
|
for name, values in INIVALUES.items():
|
|
current = config.getini(name)
|
|
current[:] = values
|
|
|
|
# set default JUnit prefix
|
|
if config.option.junitprefix is None:
|
|
config.option.junitprefix = 'ipa'
|
|
|
|
# always run doc tests
|
|
config.option.doctestmodules = True
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
group = parser.getgroup("IPA integration tests")
|
|
group.addoption(
|
|
'--ipaclient-unittests',
|
|
help='Run ipaclient unit tests only (no RPC and ipaserver)',
|
|
action='store_true'
|
|
)
|
|
group.addoption(
|
|
'--skip-ipaapi',
|
|
help='Do not run tests that depends on IPA API',
|
|
action='store_true',
|
|
)
|
|
|
|
|
|
def pytest_cmdline_main(config):
|
|
api.bootstrap(
|
|
context=u'cli', in_server=False, in_tree=True, fallback=False
|
|
)
|
|
for klass in cli_plugins:
|
|
api.add_plugin(klass)
|
|
|
|
# XXX workaround until https://fedorahosted.org/freeipa/ticket/6408 has
|
|
# been resolved.
|
|
if ipaserver is not None and installutils.is_ipa_configured():
|
|
api.finalize()
|
|
|
|
if config.option.verbose:
|
|
print('api.env: ')
|
|
pprint.pprint({k: api.env[k] for k in api.env})
|
|
print("uname: {}".format(os.uname()))
|
|
print("euid: {}, egid: {}".format(os.geteuid(), os.getegid()))
|
|
print("working dir: {}".format(os.path.abspath(os.getcwd())))
|
|
print('sys.version: {}'.format(sys.version))
|
|
|
|
|
|
def pytest_runtest_setup(item):
|
|
if isinstance(item, item.Function):
|
|
if item.get_marker('skip_ipaclient_unittest'):
|
|
# pylint: disable=no-member
|
|
if pytest.config.option.ipaclient_unittests:
|
|
pytest.skip("Skip in ipaclient unittest mode")
|
|
if item.get_marker('needs_ipaapi'):
|
|
# pylint: disable=no-member
|
|
if pytest.config.option.skip_ipaapi:
|
|
pytest.skip("Skip tests that needs an IPA API")
|