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/>.
|
|
|
|
|
|
|
|
"""Host class for integration testing"""
|
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
import pytest_multihost.host
|
2013-05-28 06:31:37 -05:00
|
|
|
|
2016-11-01 08:52:33 -05:00
|
|
|
from ipapython import ipaldap
|
2013-05-28 06:31:37 -05:00
|
|
|
|
2013-05-30 07:25:01 -05:00
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
class Host(pytest_multihost.host.Host):
|
2013-05-30 07:25:01 -05:00
|
|
|
"""Representation of a remote IPA host"""
|
2013-12-11 12:36:46 -06:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _make_host(domain, hostname, role, ip, external_hostname):
|
2013-10-16 06:54:26 -05:00
|
|
|
# We need to determine the type of the host, this depends on the domain
|
|
|
|
# type, as we assume all Unix machines are in the Unix domain and
|
|
|
|
# all Windows machine in a AD domain
|
|
|
|
|
|
|
|
if domain.type == 'AD':
|
2013-09-04 09:26:23 -05:00
|
|
|
cls = WinHost
|
|
|
|
else:
|
|
|
|
cls = Host
|
|
|
|
|
2013-12-11 12:36:46 -06:00
|
|
|
return cls(domain, hostname, role, ip, external_hostname)
|
|
|
|
|
2013-09-17 05:24:40 -05:00
|
|
|
def ldap_connect(self):
|
|
|
|
"""Return an LDAPClient authenticated to this host as directory manager
|
|
|
|
"""
|
2013-11-21 06:57:47 -06:00
|
|
|
self.log.info('Connecting to LDAP at %s', self.external_hostname)
|
2016-11-01 08:52:33 -05:00
|
|
|
ldap_uri = ipaldap.get_ldap_uri(self.external_hostname)
|
|
|
|
ldap = ipaldap.LDAPClient(ldap_uri)
|
2013-10-03 10:29:56 -05:00
|
|
|
binddn = self.config.dirman_dn
|
|
|
|
self.log.info('LDAP bind as %s' % binddn)
|
2016-10-05 10:42:32 -05:00
|
|
|
ldap.simple_bind(binddn, self.config.dirman_password)
|
2013-09-17 05:24:40 -05:00
|
|
|
return ldap
|
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
@classmethod
|
|
|
|
def from_env(cls, env, domain, hostname, role, index, domain_index):
|
2017-03-20 05:29:10 -05:00
|
|
|
from ipatests.pytest_plugins.integration.env_config import host_from_env
|
2014-11-13 09:23:56 -06:00
|
|
|
return host_from_env(env, domain, hostname, role, index, domain_index)
|
2013-05-30 07:25:01 -05:00
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
def to_env(self, **kwargs):
|
2017-03-20 05:29:10 -05:00
|
|
|
from ipatests.pytest_plugins.integration.env_config import host_to_env
|
2014-11-13 09:23:56 -06:00
|
|
|
return host_to_env(self, **kwargs)
|
2013-09-04 09:26:23 -05:00
|
|
|
|
|
|
|
|
2014-11-13 09:23:56 -06:00
|
|
|
class WinHost(pytest_multihost.host.WinHost):
|
2013-09-04 09:26:23 -05:00
|
|
|
"""
|
|
|
|
Representation of a remote Windows host.
|
|
|
|
|
|
|
|
This serves as a sketch class once we move from manual preparation of
|
|
|
|
Active Directory to the automated setup.
|
|
|
|
"""
|