2013-05-28 06:31:37 -05:00
|
|
|
# Authors:
|
|
|
|
# Petr Viktorin <pviktori@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 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/>.
|
|
|
|
|
|
|
|
"""Base class for FreeIPA integration tests"""
|
|
|
|
|
2014-10-23 12:17:09 -05:00
|
|
|
import pytest
|
2013-05-28 06:31:37 -05:00
|
|
|
|
2018-08-02 06:45:19 -05:00
|
|
|
from ipatests.pytest_ipa.integration import tasks
|
2014-12-02 06:30:20 -06:00
|
|
|
from pytest_sourceorder import ordered
|
2013-05-28 06:31:37 -05:00
|
|
|
|
|
|
|
|
|
|
|
@ordered
|
2014-11-13 09:23:56 -06:00
|
|
|
@pytest.mark.usefixtures('mh')
|
2014-10-23 13:56:15 -05:00
|
|
|
@pytest.mark.usefixtures('integration_logs')
|
2018-09-26 04:59:50 -05:00
|
|
|
class IntegrationTest:
|
2013-05-28 06:31:37 -05:00
|
|
|
num_replicas = 0
|
|
|
|
num_clients = 0
|
2013-09-04 08:02:21 -05:00
|
|
|
num_ad_domains = 0
|
2013-10-16 06:54:26 -05:00
|
|
|
required_extra_roles = []
|
2013-06-27 08:28:13 -05:00
|
|
|
topology = None
|
2016-03-08 05:29:35 -06:00
|
|
|
domain_level = None
|
2013-05-28 06:31:37 -05:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setup_class(cls):
|
2014-10-23 12:17:09 -05:00
|
|
|
pass
|
2013-05-28 06:31:37 -05:00
|
|
|
|
2013-10-16 06:54:26 -05:00
|
|
|
@classmethod
|
|
|
|
def host_by_role(cls, role):
|
|
|
|
for domain in cls.get_domains():
|
|
|
|
try:
|
|
|
|
return domain.host_by_role(role)
|
|
|
|
except LookupError:
|
|
|
|
pass
|
|
|
|
raise LookupError(role)
|
|
|
|
|
2013-05-28 06:31:37 -05:00
|
|
|
@classmethod
|
|
|
|
def get_all_hosts(cls):
|
2013-10-16 06:54:26 -05:00
|
|
|
return ([cls.master] + cls.replicas + cls.clients +
|
2015-08-12 05:25:30 -05:00
|
|
|
[cls.host_by_role(r) for r in cls.required_extra_roles])
|
2013-10-16 06:54:26 -05:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_domains(cls):
|
|
|
|
return [cls.domain] + cls.ad_domains
|
2013-05-28 06:31:37 -05:00
|
|
|
|
|
|
|
@classmethod
|
2014-11-13 09:23:56 -06:00
|
|
|
def install(cls, mh):
|
2016-03-08 05:29:35 -06:00
|
|
|
if cls.domain_level is not None:
|
|
|
|
domain_level = cls.domain_level
|
|
|
|
else:
|
|
|
|
domain_level = cls.master.config.domain_level
|
2013-06-27 08:28:13 -05:00
|
|
|
if cls.topology is None:
|
2013-05-28 06:31:37 -05:00
|
|
|
return
|
|
|
|
else:
|
2013-06-27 08:28:13 -05:00
|
|
|
tasks.install_topo(cls.topology,
|
2016-03-08 05:29:35 -06:00
|
|
|
cls.master, cls.replicas,
|
|
|
|
cls.clients, domain_level)
|
2013-05-28 06:31:37 -05:00
|
|
|
@classmethod
|
|
|
|
def teardown_class(cls):
|
2014-10-23 12:17:09 -05:00
|
|
|
pass
|
2013-05-28 06:31:37 -05:00
|
|
|
|
|
|
|
@classmethod
|
2014-11-13 09:23:56 -06:00
|
|
|
def uninstall(cls, mh):
|
2013-06-27 03:40:39 -05:00
|
|
|
tasks.uninstall_master(cls.master)
|
2013-05-28 06:31:37 -05:00
|
|
|
for replica in cls.replicas:
|
2013-06-27 03:40:39 -05:00
|
|
|
tasks.uninstall_master(replica)
|
2013-05-28 06:31:37 -05:00
|
|
|
for client in cls.clients:
|
2013-06-27 03:40:39 -05:00
|
|
|
tasks.uninstall_client(client)
|