2014-10-23 12:17:09 -05:00
|
|
|
# Authors:
|
|
|
|
# Petr Viktorin <pviktori@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2011 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""Pytest plugin for IPA Integration tests"""
|
|
|
|
|
2015-08-12 06:44:11 -05:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
import os
|
|
|
|
import tempfile
|
|
|
|
import shutil
|
2017-05-22 11:27:44 -05:00
|
|
|
import re
|
2014-10-23 13:56:15 -05:00
|
|
|
|
2014-10-23 12:17:09 -05:00
|
|
|
import pytest
|
2014-11-13 09:23:56 -06:00
|
|
|
from pytest_multihost import make_multihost_fixture
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
from ipapython import ipautil
|
|
|
|
from ipapython.ipa_log_manager import log_mgr
|
2017-05-29 06:41:18 -05:00
|
|
|
from ipatests.test_util import yield_fixture
|
2017-03-20 05:26:45 -05:00
|
|
|
from .config import Config
|
2017-03-20 05:29:10 -05:00
|
|
|
from .env_config import get_global_config
|
2017-03-20 05:34:17 -05:00
|
|
|
from . import tasks
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
log = log_mgr.get_logger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
|
|
group = parser.getgroup("IPA integration tests")
|
|
|
|
|
|
|
|
group.addoption(
|
|
|
|
'--logfile-dir', dest="logfile_dir", default=None,
|
|
|
|
help="Directory to store integration test logs in.")
|
|
|
|
|
|
|
|
|
2017-05-22 11:27:44 -05:00
|
|
|
def _get_logname_from_node(node):
|
|
|
|
name = node.nodeid
|
|
|
|
name = re.sub('\(\)/', '', name) # remove ()/
|
|
|
|
name = re.sub('[()]', '', name) # and standalone brackets
|
|
|
|
name = re.sub('(/|::)', '-', name)
|
|
|
|
return name
|
|
|
|
|
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
def collect_test_logs(node, logs_dict, test_config):
|
|
|
|
"""Collect logs from a test
|
|
|
|
|
|
|
|
Calls collect_logs
|
|
|
|
|
|
|
|
:param node: The pytest collection node (request.node)
|
|
|
|
:param logs_dict: Mapping of host to list of log filnames to collect
|
|
|
|
:param test_config: Pytest configuration
|
|
|
|
"""
|
|
|
|
collect_logs(
|
2017-05-22 11:27:44 -05:00
|
|
|
name=_get_logname_from_node(node),
|
2014-10-23 13:56:15 -05:00
|
|
|
logs_dict=logs_dict,
|
|
|
|
logfile_dir=test_config.getoption('logfile_dir'),
|
|
|
|
beakerlib_plugin=test_config.pluginmanager.getplugin('BeakerLibPlugin'),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-05-22 11:33:49 -05:00
|
|
|
def collect_systemd_journal(node, hosts, test_config):
|
|
|
|
"""Collect systemd journal from remote hosts
|
|
|
|
|
|
|
|
:param node: The pytest collection node (request.node)
|
|
|
|
:param hosts: List of hosts from which to collect journal
|
|
|
|
:param test_config: Pytest configuration
|
|
|
|
"""
|
|
|
|
name = _get_logname_from_node(node)
|
|
|
|
logfile_dir = test_config.getoption('logfile_dir')
|
|
|
|
|
2017-06-09 07:34:10 -05:00
|
|
|
if logfile_dir is None:
|
|
|
|
return
|
|
|
|
|
2017-05-22 11:33:49 -05:00
|
|
|
for host in hosts:
|
|
|
|
log.info("Collecting journal from: %s", host.hostname)
|
|
|
|
|
|
|
|
topdirname = os.path.join(logfile_dir, name, host.hostname)
|
|
|
|
if not os.path.exists(topdirname):
|
|
|
|
os.makedirs(topdirname)
|
|
|
|
|
|
|
|
# Get journal content
|
|
|
|
cmd = host.run_command(
|
|
|
|
['journalctl', '--since', host.config.log_journal_since],
|
|
|
|
log_stdout=False, raiseonerr=False)
|
|
|
|
if cmd.returncode:
|
|
|
|
log.error('An error occurred while collecting journal')
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Write journal to file
|
|
|
|
with open(os.path.join(topdirname, "journal"), 'w') as f:
|
|
|
|
f.write(cmd.stdout_text)
|
|
|
|
|
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
def collect_logs(name, logs_dict, logfile_dir=None, beakerlib_plugin=None):
|
|
|
|
"""Collect logs from remote hosts
|
|
|
|
|
|
|
|
Calls collect_logs
|
|
|
|
|
|
|
|
:param name: Name under which logs arecollected, e.g. name of the test
|
|
|
|
:param logs_dict: Mapping of host to list of log filnames to collect
|
|
|
|
:param logfile_dir: Directory to log to
|
|
|
|
:param beakerlib_plugin:
|
|
|
|
BeakerLibProcess or BeakerLibPlugin used to collect tests for BeakerLib
|
|
|
|
|
|
|
|
If neither logfile_dir nor beakerlib_plugin is given, no tests are
|
|
|
|
collected.
|
|
|
|
"""
|
|
|
|
if logs_dict and (logfile_dir or beakerlib_plugin):
|
|
|
|
|
|
|
|
if logfile_dir:
|
|
|
|
remove_dir = False
|
|
|
|
else:
|
|
|
|
logfile_dir = tempfile.mkdtemp()
|
|
|
|
remove_dir = True
|
|
|
|
|
|
|
|
topdirname = os.path.join(logfile_dir, name)
|
|
|
|
|
|
|
|
for host, logs in logs_dict.items():
|
|
|
|
log.info('Collecting logs from: %s', host.hostname)
|
|
|
|
|
|
|
|
# Tar up the logs on the remote server
|
2016-07-20 10:35:32 -05:00
|
|
|
cmd = host.run_command(
|
|
|
|
['tar', '-c', '--ignore-failed-read', '-J', '-v'] + logs,
|
|
|
|
log_stdout=False, raiseonerr=False)
|
2014-10-23 13:56:15 -05:00
|
|
|
if cmd.returncode:
|
2016-01-15 09:25:33 -06:00
|
|
|
log.warning('Could not collect all requested logs')
|
2014-10-23 13:56:15 -05:00
|
|
|
|
|
|
|
# Unpack on the local side
|
|
|
|
dirname = os.path.join(topdirname, host.hostname)
|
|
|
|
try:
|
|
|
|
os.makedirs(dirname)
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
tarname = os.path.join(dirname, 'logs.tar.xz')
|
|
|
|
with open(tarname, 'w') as f:
|
|
|
|
f.write(cmd.stdout_text)
|
|
|
|
ipautil.run(['tar', 'xJvf', 'logs.tar.xz'], cwd=dirname,
|
|
|
|
raiseonerr=False)
|
|
|
|
os.unlink(tarname)
|
|
|
|
|
|
|
|
if beakerlib_plugin:
|
|
|
|
# Use BeakerLib's rlFileSubmit on the indifidual files
|
|
|
|
# The resulting submitted filename will be
|
|
|
|
# $HOSTNAME-$FILENAME (with '/' replaced by '-')
|
|
|
|
beakerlib_plugin.run_beakerlib_command(['pushd', topdirname])
|
|
|
|
try:
|
2016-10-06 13:28:59 -05:00
|
|
|
for dirpath, _dirnames, filenames in os.walk(topdirname):
|
2014-10-23 13:56:15 -05:00
|
|
|
for filename in filenames:
|
|
|
|
fullname = os.path.relpath(
|
|
|
|
os.path.join(dirpath, filename), topdirname)
|
|
|
|
log.debug('Submitting file: %s', fullname)
|
|
|
|
beakerlib_plugin.run_beakerlib_command(
|
|
|
|
['rlFileSubmit', fullname])
|
|
|
|
finally:
|
|
|
|
beakerlib_plugin.run_beakerlib_command(['popd'])
|
|
|
|
|
|
|
|
if remove_dir:
|
|
|
|
if beakerlib_plugin:
|
|
|
|
# The BeakerLib process runs asynchronously, let it clean up
|
|
|
|
# after it's done with the directory
|
|
|
|
beakerlib_plugin.run_beakerlib_command(
|
|
|
|
['rm', '-rvf', topdirname])
|
|
|
|
else:
|
|
|
|
shutil.rmtree(topdirname)
|
|
|
|
|
|
|
|
logs_dict.clear()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope='class')
|
|
|
|
def class_integration_logs():
|
|
|
|
"""Internal fixture providing class-level logs_dict"""
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
2017-05-29 06:41:18 -05:00
|
|
|
@yield_fixture
|
2014-10-23 13:56:15 -05:00
|
|
|
def integration_logs(class_integration_logs, request):
|
|
|
|
"""Provides access to test integration logs, and collects after each test
|
|
|
|
"""
|
|
|
|
yield class_integration_logs
|
2017-05-22 11:33:49 -05:00
|
|
|
hosts = class_integration_logs.keys()
|
2014-10-23 13:56:15 -05:00
|
|
|
collect_test_logs(request.node, class_integration_logs, request.config)
|
2017-05-22 11:33:49 -05:00
|
|
|
collect_systemd_journal(request.node, hosts, request.config)
|
2014-10-23 13:56:15 -05:00
|
|
|
|
|
|
|
|
2017-05-29 06:41:18 -05:00
|
|
|
@yield_fixture(scope='class')
|
2014-11-13 09:23:56 -06:00
|
|
|
def mh(request, class_integration_logs):
|
|
|
|
"""IPA's multihost fixture object
|
2014-10-23 13:56:15 -05:00
|
|
|
"""
|
2014-10-23 12:17:09 -05:00
|
|
|
cls = request.cls
|
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
domain_description = {
|
|
|
|
'type': 'IPA',
|
|
|
|
'hosts': {
|
|
|
|
'master': 1,
|
|
|
|
'replica': cls.num_replicas,
|
2014-12-15 10:11:40 -06:00
|
|
|
'client': cls.num_clients,
|
2014-11-13 09:23:56 -06:00
|
|
|
},
|
|
|
|
}
|
|
|
|
domain_description['hosts'].update(
|
|
|
|
{role: 1 for role in cls.required_extra_roles})
|
|
|
|
|
|
|
|
domain_descriptions = [domain_description]
|
2016-10-06 13:28:59 -05:00
|
|
|
for _i in range(cls.num_ad_domains):
|
2014-11-13 09:23:56 -06:00
|
|
|
domain_descriptions.append({
|
|
|
|
'type': 'AD',
|
2016-09-22 07:09:03 -05:00
|
|
|
'hosts': {'ad': 1, 'ad_subdomain': 1, 'ad_treedomain': 1},
|
2014-11-13 09:23:56 -06:00
|
|
|
})
|
|
|
|
|
|
|
|
mh = make_multihost_fixture(
|
|
|
|
request,
|
|
|
|
domain_descriptions,
|
|
|
|
config_class=Config,
|
|
|
|
_config=get_global_config(),
|
|
|
|
)
|
2014-12-15 11:42:45 -06:00
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
mh.domain = mh.config.domains[0]
|
|
|
|
[mh.master] = mh.domain.hosts_by_role('master')
|
|
|
|
mh.replicas = mh.domain.hosts_by_role('replica')
|
|
|
|
mh.clients = mh.domain.hosts_by_role('client')
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
cls.logs_to_collect = class_integration_logs
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
def collect_log(host, filename):
|
|
|
|
log.info('Adding %s:%s to list of logs to collect' %
|
|
|
|
(host.external_hostname, filename))
|
|
|
|
class_integration_logs.setdefault(host, []).append(filename)
|
|
|
|
|
2015-08-12 06:44:11 -05:00
|
|
|
print(mh.config)
|
2014-12-15 11:42:45 -06:00
|
|
|
for host in mh.config.get_all_hosts():
|
2014-10-23 13:56:15 -05:00
|
|
|
host.add_log_collector(collect_log)
|
2016-03-21 08:08:06 -05:00
|
|
|
cls.log.info('Preparing host %s', host.hostname)
|
|
|
|
tasks.prepare_host(host)
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-12-15 11:42:45 -06:00
|
|
|
setup_class(cls, mh)
|
2014-11-13 09:23:56 -06:00
|
|
|
mh._pytestmh_request.addfinalizer(lambda: teardown_class(cls))
|
2014-10-23 12:17:09 -05:00
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
yield mh.install()
|
2014-10-23 12:17:09 -05:00
|
|
|
|
|
|
|
for host in cls.get_all_hosts():
|
|
|
|
host.remove_log_collector(collect_log)
|
|
|
|
|
2014-10-23 13:56:15 -05:00
|
|
|
collect_test_logs(request.node, class_integration_logs, request.config)
|
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
|
2014-12-15 11:42:45 -06:00
|
|
|
def setup_class(cls, mh):
|
|
|
|
"""Add convenience attributes to the test class
|
2014-11-13 09:23:56 -06:00
|
|
|
|
|
|
|
This is deprecated in favor of the mh fixture.
|
|
|
|
To be removed when no more tests using this.
|
|
|
|
"""
|
2014-12-15 11:42:45 -06:00
|
|
|
cls.domain = mh.domain
|
|
|
|
cls.master = mh.master
|
|
|
|
cls.replicas = mh.replicas
|
|
|
|
cls.clients = mh.clients
|
|
|
|
cls.ad_domains = mh.config.ad_domains
|
2014-11-13 09:23:56 -06:00
|
|
|
|
|
|
|
|
|
|
|
def teardown_class(cls):
|
2014-12-15 11:42:45 -06:00
|
|
|
"""Remove convenience attributes from the test class
|
2014-11-13 09:23:56 -06:00
|
|
|
|
|
|
|
This is deprecated in favor of the mh fixture.
|
|
|
|
To be removed when no more tests using this.
|
|
|
|
"""
|
|
|
|
del cls.master
|
|
|
|
del cls.replicas
|
|
|
|
del cls.clients
|
|
|
|
del cls.ad_domains
|
|
|
|
del cls.domain
|