From a3d71eb72a6125a80a9d7b698f34dcb95dc25184 Mon Sep 17 00:00:00 2001 From: Anuja More Date: Thu, 5 Aug 2021 20:03:21 +0530 Subject: [PATCH] ipatests: Test ldapsearch with base scope works with compat tree. Added test to verify that ldapsearch for compat tree with scope base and sub is not failing. Related: https://bugzilla.redhat.com/show_bug.cgi?id=1958909 Signed-off-by: Anuja More Reviewed-By: Mohammad Rizwan Reviewed-By: Florence Blanc-Renaud --- ipatests/test_integration/test_commands.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ipatests/test_integration/test_commands.py b/ipatests/test_integration/test_commands.py index 2035ced56..e3a0d867e 100644 --- a/ipatests/test_integration/test_commands.py +++ b/ipatests/test_integration/test_commands.py @@ -1558,6 +1558,19 @@ class TestIPACommandWithoutReplica(IntegrationTest): # Run the command again after cache is removed self.master.run_command(['ipa', 'user-show', 'ipauser1']) + def test_basesearch_compat_tree(self): + """Test ldapsearch against compat tree is working + + This to ensure that ldapsearch with base scope is not failing. + + related: https://bugzilla.redhat.com/show_bug.cgi?id=1958909 + """ + tasks.kinit_admin(self.master) + base_dn = str(self.master.domain.basedn) + base = "cn=admins,cn=groups,cn=compat,{basedn}".format(basedn=base_dn) + tasks.ldapsearch_dm(self.master, base, ldap_args=[], scope='sub') + tasks.ldapsearch_dm(self.master, base, ldap_args=[], scope='base') + class TestIPAautomount(IntegrationTest): @classmethod -- 2.31.1