mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Add ldap_connect() method to Host to allow executing querying LDAP from tests. Use information in the mapping tree to poll until all replication is finished (or failing) before checking that entries replicated successfully.
62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
# 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/>.
|
|
|
|
from ipapython.dn import DN
|
|
from ipatests.test_integration.base import IntegrationTest
|
|
from ipatests.test_integration import tasks
|
|
|
|
|
|
class TestSimpleReplication(IntegrationTest):
|
|
"""Simple replication test
|
|
|
|
Install a server and a replica, then add an user on one host and ensure
|
|
it is also present on the other one.
|
|
"""
|
|
num_replicas = 1
|
|
topology = 'star'
|
|
|
|
def check_replication(self, source_host, dest_host, login):
|
|
source_host.run_command(['ipa', 'user-add', login,
|
|
'--first', 'test',
|
|
'--last', 'user'])
|
|
|
|
ldap = dest_host.ldap_connect()
|
|
tasks.wait_for_replication(ldap)
|
|
|
|
# Check using LDAP
|
|
basedn = dest_host.domain.basedn
|
|
user_dn = DN(('uid', login), ('cn', 'users'), ('cn', 'accounts'),
|
|
basedn)
|
|
entry = ldap.get_entry(user_dn)
|
|
print entry
|
|
assert entry.dn == user_dn
|
|
assert entry['uid'] == [login]
|
|
|
|
# Check using CLI
|
|
result = dest_host.run_command(['ipa', 'user-show', login])
|
|
assert 'User login: %s' % login in result.stdout_text
|
|
|
|
def test_user_replication_to_replica(self):
|
|
"""Test user replication master -> replica"""
|
|
self.check_replication(self.master, self.replicas[0], 'testuser1')
|
|
|
|
def test_user_replication_to_master(self):
|
|
"""Test user replication replica -> master"""
|
|
self.check_replication(self.replicas[0], self.master, 'testuser2')
|