Report generated on 29-Sep-2020 at 23:50:08 by pytest-html v2.1.1
389-ds-base | 1.4.4.4-20200929gitdf3a512.fc32 |
Packages | {"pluggy": "0.13.1", "py": "1.9.0", "pytest": "5.4.3"} |
Platform | Linux-5.7.7-200.fc32.x86_64-x86_64-with-glibc2.2.5 |
Plugins | {"html": "2.1.1", "libfaketime": "0.1.2", "metadata": "1.10.0"} |
Python | 3.8.5 |
cyrus-sasl | 2.1.27-4.fc32 |
nspr | 4.28.0-1.fc32 |
nss | 3.56.0-1.fc32 |
openldap | 2.4.47-5.fc32 |
2030 tests ran in 16107.20 seconds.
(Un)check the boxes to filter the results.
1964 passed, 48 skipped, 39 failed, 0 errors, 19 expected failures, 8 unexpected passesResult | Test | Duration | Links |
---|---|---|---|
No results found. Try to check the filters | |||
Failed | suites/import/import_test.py::test_fast_slow_import | 10.61 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7eb0bb0> _toggle_private_import_mem = None, _import_clean = None def test_fast_slow_import(topo, _toggle_private_import_mem, _import_clean): """With nsslapd-db-private-import-mem: on is faster import. :id: 3044331c-9c0e-11ea-ac9f-8c16451d917b :setup: Standalone Instance :steps: 1. Let's set nsslapd-db-private-import-mem:on, nsslapd-import-cache-autosize: 0 2. Measure offline import time duration total_time1 3. Now nsslapd-db-private-import-mem:off 4. Measure offline import time duration total_time2 5. total_time1 < total_time2 6. Set nsslapd-db-private-import-mem:on, nsslapd-import-cache-autosize: -1 7. Measure offline import time duration total_time1 8. Now nsslapd-db-private-import-mem:off 9. Measure offline import time duration total_time2 10. total_time1 < total_time2 :expected results: 1. Operation successful 2. Operation successful 3. Operation successful 4. Operation successful 5. Operation successful 6. Operation successful 7. Operation successful 8. Operation successful 9. Operation successful 10. Operation successful """ # Let's set nsslapd-db-private-import-mem:on, nsslapd-import-cache-autosize: 0 config = LDBMConfig(topo.standalone) # Measure offline import time duration total_time1 total_time1 = _import_offline(topo, 20) # Now nsslapd-db-private-import-mem:off config.replace('nsslapd-db-private-import-mem', 'off') accounts = Accounts(topo.standalone, DEFAULT_SUFFIX) for i in accounts.filter('(uid=*)'): UserAccount(topo.standalone, i.dn).delete() # Measure offline import time duration total_time2 total_time2 = _import_offline(topo, 20) # total_time1 < total_time2 > assert total_time1 < total_time2 E assert 2.099482297897339 < 2.043595552444458 suites/import/import_test.py:307: AssertionError | |||
Failed | suites/password/pwdPolicy_syntax_test.py::test_basic | 5.86 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21f47ed100> create_user = None, password_policy = None def test_basic(topology_st, create_user, password_policy): """Ensure that on a password change, the policy syntax is enforced correctly. :id: e8de7029-7fa6-4e96-9eb6-4a121f4c8fb3 :setup: Standalone instance, a test user, global password policy with: passwordCheckSyntax - on; nsslapd-pwpolicy-local - off; passwordMinCategories - 1 :steps: 1. Set passwordMinLength to 10 in cn=config 2. Set userPassword to 'passwd' in cn=config 3. Set userPassword to 'password123' in cn=config 4. Set passwordMinLength to 2 in cn=config 5. Set passwordMinDigits to 2 in cn=config 6. Set userPassword to 'passwd' in cn=config 7. Set userPassword to 'password123' in cn=config 8. Set passwordMinDigits to 0 in cn=config 9. Set passwordMinAlphas to 2 in cn=config 10. Set userPassword to 'p123456789' in cn=config 11. Set userPassword to 'password123' in cn=config 12. Set passwordMinAlphas to 0 in cn=config 13. Set passwordMaxRepeats to 2 in cn=config 14. Set userPassword to 'password' in cn=config 15. Set userPassword to 'password123' in cn=config 16. Set passwordMaxRepeats to 0 in cn=config 17. Set passwordMinSpecials to 2 in cn=config 18. Set userPassword to 'passwd' in cn=config 19. Set userPassword to 'password_#$' in cn=config 20. Set passwordMinSpecials to 0 in cn=config 21. Set passwordMinLowers to 2 in cn=config 22. Set userPassword to 'PASSWORD123' in cn=config 23. Set userPassword to 'password123' in cn=config 24. Set passwordMinLowers to 0 in cn=config 25. Set passwordMinUppers to 2 in cn=config 26. Set userPassword to 'password' in cn=config 27. Set userPassword to 'PASSWORD' in cn=config 28. Set passwordMinUppers to 0 in cn=config 29. Test passwordDictCheck 30. Test passwordPalindrome 31. Test passwordMaxSequence for forward number sequence 32. Test passwordMaxSequence for backward number sequence 33. Test passwordMaxSequence for forward alpha sequence 34. Test passwordMaxSequence for backward alpha sequence 35. Test passwordMaxClassChars for digits 36. Test passwordMaxClassChars for specials 37. Test passwordMaxClassChars for lowers 38. Test passwordMaxClassChars for uppers 39. Test passwordBadWords using 'redhat' and 'fedora' 40. Test passwordUserAttrs using description attribute :expectedresults: 1. passwordMinLength should be successfully set 2. Password should be rejected because length too short 3. Password should be accepted 4. passwordMinLength should be successfully set 5. passwordMinDigits should be successfully set 6. Password should be rejected because it does not contain minimum number of digits 7. Password should be accepted 8. passwordMinDigits should be successfully set 9. passwordMinAlphas should be successfully set 10. Password should be rejected because it does not contain minimum number of alphas 11. Password should be accepted 12. passwordMinAlphas should be successfully set 13. passwordMaxRepeats should be successfully set 14. Password should be rejected because too many repeating characters 15. Password should be accepted 16. passwordMaxRepeats should be successfully set 17. passwordMinSpecials should be successfully set 18. Password should be rejected because it does not contain minimum number of special characters 19. Password should be accepted 20. passwordMinSpecials should be successfully set 21. passwordMinLowers should be successfully set 22. Password should be rejected because it does not contain minimum number of lowercase characters 23. Password should be accepted 24. passwordMinLowers should be successfully set 25. passwordMinUppers should be successfully set 26. Password should be rejected because it does not contain minimum number of lowercase characters 27. Password should be accepted 28. passwordMinUppers should be successfully set 29. The passwordDictCheck test succeeds 30. The passwordPalindrome test succeeds 31. Test passwordMaxSequence for forward number sequence succeeds 32. Test passwordMaxSequence for backward number sequence succeeds 33. Test passwordMaxSequence for forward alpha sequence succeeds 34. Test passwordMaxSequence for backward alpha sequence succeeds 35. Test passwordMaxClassChars for digits succeeds 36. Test passwordMaxClassChars for specials succeeds 37. Test passwordMaxClassChars for lowers succeeds 38. Test passwordMaxClassChars for uppers succeeds 39. The passwordBadWords test succeeds 40. The passwordUserAttrs test succeeds """ # # Test each syntax category # ous = OrganizationalUnits(topology_st.standalone, DEFAULT_SUFFIX) ou = ous.get('people') ou.add('aci', USER_ACI) # Min Length tryPassword(topology_st.standalone, 'passwordMinLength', 10, 2, 'passwd', 'password123', 'length too short') # Min Digit tryPassword(topology_st.standalone, 'passwordMinDigits', 2, 0, 'passwd', 'password123', 'does not contain minimum number of digits') # Min Alphas tryPassword(topology_st.standalone, 'passwordMinAlphas', 2, 0, 'p123456789', 'password123', 'does not contain minimum number of alphas') # Max Repeats tryPassword(topology_st.standalone, 'passwordMaxRepeats', 2, 0, 'passsword', 'password123', 'too many repeating characters') # Min Specials tryPassword(topology_st.standalone, 'passwordMinSpecials', 2, 0, 'passwd', 'password_#$', 'does not contain minimum number of special characters') # Min Lowers tryPassword(topology_st.standalone, 'passwordMinLowers', 2, 0, 'PASSWORD123', 'password123', 'does not contain minimum number of lowercase characters') # Min Uppers tryPassword(topology_st.standalone, 'passwordMinUppers', 2, 0, 'password', 'PASSWORD', 'does not contain minimum number of lowercase characters') # Min 8-bits - "ldap" package only accepts ascii strings at the moment if ds_is_newer('1.4.0.13'): # Dictionary check tryPassword(topology_st.standalone, 'passwordDictCheck', 'on', 'on', 'PASSWORD', '13_#Kad472h', 'Password found in dictionary') # Palindromes tryPassword(topology_st.standalone, 'passwordPalindrome', 'on', 'on', 'Za12_#_21aZ', '13_#Kad472h', 'Password is palindrome') # Sequences tryPassword(topology_st.standalone, 'passwordMaxSequence', 3, 0, 'Za1_1234', '13_#Kad472h', 'Max monotonic sequence is not allowed') tryPassword(topology_st.standalone, 'passwordMaxSequence', 3, 0, 'Za1_4321', '13_#Kad472h', 'Max monotonic sequence is not allowed') tryPassword(topology_st.standalone, 'passwordMaxSequence', 3, 0, 'Za1_abcd', '13_#Kad472h', 'Max monotonic sequence is not allowed') tryPassword(topology_st.standalone, 'passwordMaxSequence', 3, 0, 'Za1_dcba', '13_#Kad472h', 'Max monotonic sequence is not allowed') # Sequence Sets > tryPassword(topology_st.standalone, 'passwordMaxSeqSets', 2, 0, 'Za1_123--123', '13_#Kad472h', 'Max monotonic sequence is not allowed') suites/password/pwdPolicy_syntax_test.py:265: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ inst = <lib389.DirSrv object at 0x7f21f47ed3d0> policy_attr = 'passwordMaxSeqSets', value = 2, reset_value = 0 pw_bad = 'Za1_123--123', pw_good = '13_#Kad472h' msg = 'Max monotonic sequence is not allowed' def tryPassword(inst, policy_attr, value, reset_value, pw_bad, pw_good, msg): """Attempt to change the users password inst: DirSrv Object password: password msg - error message if failure """ setPolicy(inst, policy_attr, value) inst.simple_bind_s(USER_DN, PASSWORD) users = UserAccounts(inst, DEFAULT_SUFFIX) user = users.get(USER_RDN) try: user.reset_password(pw_bad) log.fatal('Invalid password was unexpectedly accepted (%s)' % (policy_attr)) > assert False E assert False suites/password/pwdPolicy_syntax_test.py:96: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:33 Enable global password policy. Check for syntax. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinLength: length too short [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinDigits: does not contain minimum number of digits [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinAlphas: does not contain minimum number of alphas [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxRepeats: too many repeating characters [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinSpecials: does not contain minimum number of special characters [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinLowers: does not contain minimum number of lowercase characters [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinUppers: does not contain minimum number of lowercase characters [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordDictCheck: Password found in dictionary [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordPalindrome: Password is palindrome [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed [31mCRITICAL[0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:94 Invalid password was unexpectedly accepted (passwordMaxSeqSets) | |||
Failed | suites/password/pwdPolicy_syntax_test.py::test_config_set_few_user_attributes | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21f47ed100> create_user = None, password_policy = None @pytest.mark.bz1816857 @pytest.mark.ds50875 @pytest.mark.skipif(ds_is_older("1.4.1.18"), reason="Not implemented") def test_config_set_few_user_attributes(topology_st, create_user, password_policy): """Test that we can successfully set multiple values to passwordUserAttributes :id: 188e0aee-6e29-4857-910c-27d5606f8c08 :setup: Standalone instance :steps: 1. Set passwordUserAttributes to "description loginShell" 2. Verify passwordUserAttributes has the values 3. Verify passwordUserAttributes enforced the policy :expectedresults: 1. Operation should be successful 2. Operation should be successful 3. Operation should be successful """ standalone = topology_st.standalone standalone.log.info('Set passwordUserAttributes to "description loginShell"') > standalone.config.set('passwordUserAttributes', 'description loginshell') suites/password/pwdPolicy_syntax_test.py:308: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set return self._instance.modify_ext_s(self._dn, [(action, key, value)], /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21f47ed3d0> func = <built-in method result4 of LDAP object at 0x7f21f47ec3f0> args = (240, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.INSUFFICIENT_ACCESS: {'msgtype': 103, 'msgid': 240, 'result': 50, 'desc': 'Insufficient access', 'ctrls': [], 'info': "Insufficient 'write' privilege to the 'passwordUserAttributes' attribute of entry 'cn=config'.\n"} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: INSUFFICIENT_ACCESS -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:pwdPolicy_syntax_test.py:307 Set passwordUserAttributes to "description loginShell" | |||
Failed | suites/password/pwdPolicy_syntax_test.py::test_config_set_few_bad_words | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21f47ed100> create_user = None, password_policy = None @pytest.mark.bz1816857 @pytest.mark.ds50875 @pytest.mark.skipif(ds_is_older("1.4.1.18"), reason="Not implemented") def test_config_set_few_bad_words(topology_st, create_user, password_policy): """Test that we can successfully set multiple values to passwordBadWords :id: 2977094c-921c-4b2f-af91-4c7a45ded48b :setup: Standalone instance :steps: 1. Set passwordBadWords to "fedora redhat" 2. Verify passwordBadWords has the values 3. Verify passwordBadWords enforced the policy :expectedresults: 1. Operation should be successful 2. Operation should be successful 3. Operation should be successful """ standalone = topology_st.standalone standalone.log.info('Set passwordBadWords to "fedora redhat"') > standalone.config.set('passwordBadWords', 'fedora redhat') suites/password/pwdPolicy_syntax_test.py:349: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set return self._instance.modify_ext_s(self._dn, [(action, key, value)], /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21f47ed3d0> func = <built-in method result4 of LDAP object at 0x7f21f47ec3f0> args = (241, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.INSUFFICIENT_ACCESS: {'msgtype': 103, 'msgid': 241, 'result': 50, 'desc': 'Insufficient access', 'ctrls': [], 'info': "Insufficient 'write' privilege to the 'passwordBadWords' attribute of entry 'cn=config'.\n"} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: INSUFFICIENT_ACCESS -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:pwdPolicy_syntax_test.py:348 Set passwordBadWords to "fedora redhat" | |||
Failed | suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie_add_del | 0.60 | |
topology = <lib389.topologies.TopologyMain object at 0x7f21e7249100> request = <FixtureRequest for <Function test_sync_repl_cookie_add_del>> def test_sync_repl_cookie_add_del(topology, request): """Test sync_repl cookie are progressing is an increasing order when there add and del :id: 83e11038-6ed0-4a5b-ac77-e44887ab11e3 :setup: Standalone Instance :steps: 1.: enable retroCL 2.: configure retroCL to log nsuniqueid as targetUniqueId 3.: enable content_sync plugin 4.: enable automember 5.: create (2) groups. Few groups can help to reproduce the concurrent updates problem. 6.: configure automember to provision those groups with 'member' 7.: enable and configure memberof plugin 8.: enable plugin log level 9.: restart the server 10.: create a thread dedicated to run a sync repl client 11.: Create (3) users that will generate nested updates (automember/memberof) 12.: Delete (3) users 13.: stop sync repl client and collect the list of cookie.change_no 14.: check that cookies.change_no are in increasing order :expectedresults: 1.: succeeds 2.: succeeds 3.: succeeds 4.: succeeds 5.: succeeds 6.: succeeds 7.: succeeds 8.: succeeds 9.: succeeds 10.: succeeds 11.: succeeds 12.: succeeds 13.: succeeds 14.: succeeds """ inst = topology[0] # Enable/configure retroCL plugin = RetroChangelogPlugin(inst) plugin.disable() plugin.enable() plugin.set('nsslapd-attribute', 'nsuniqueid:targetuniqueid') # Enable sync plugin plugin = ContentSyncPlugin(inst) plugin.enable() # Enable automember plugin = AutoMembershipPlugin(inst) plugin.disable() plugin.enable() # Add the automember group groups = Groups(inst, DEFAULT_SUFFIX) group = [] for i in range(1,3): group.append(groups.create(properties={'cn': 'group%d' % i})) # Add the automember config entry am_configs = AutoMembershipDefinitions(inst) for g in group: > am_config = am_configs.create(properties={'cn': 'config %s' % g.get_attr_val_utf8('cn'), 'autoMemberScope': DEFAULT_SUFFIX, 'autoMemberFilter': 'uid=*', 'autoMemberDefaultGroup': g.dn, 'autoMemberGroupingAttr': 'member:dn'}) suites/syncrepl_plugin/basic_test.py:343: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1169: in create return co.create(rdn, properties, self._basedn) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e7249910> func = <built-in method result4 of LDAP object at 0x7f21e70457e0> args = (23, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.ALREADY_EXISTS: {'msgtype': 105, 'msgid': 23, 'result': 68, 'desc': 'Already exists', 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: ALREADY_EXISTS | |||
Failed | suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie_with_failure | 0.26 | |
topology = <lib389.topologies.TopologyMain object at 0x7f21e7249100> request = <FixtureRequest for <Function test_sync_repl_cookie_with_failure>> def test_sync_repl_cookie_with_failure(topology, request): """Test sync_repl cookie are progressing is the right order when there is a failure in nested updates :id: e0103448-170e-4080-8f22-c34606447ce2 :setup: Standalone Instance :steps: 1.: enable retroCL 2.: configure retroCL to log nsuniqueid as targetUniqueId 3.: enable content_sync plugin 4.: enable automember 5.: create (4) groups. make group2 groupOfUniqueNames so the automember will fail to add 'member' (uniqueMember expected) 6.: configure automember to provision those groups with 'member' 7.: enable and configure memberof plugin 8.: enable plugin log level 9.: restart the server 10.: create a thread dedicated to run a sync repl client 11.: Create a group that will be the only update received by sync repl client 12.: Create (9) users that will generate nested updates (automember/memberof) 13.: stop sync repl client and collect the list of cookie.change_no 14.: check that the list of cookie.change_no contains only the group 'step 11' :expectedresults: 1.: succeeds 2.: succeeds 3.: succeeds 4.: succeeds 5.: succeeds 6.: succeeds 7.: succeeds 8.: succeeds 9.: succeeds 10.: succeeds 11.: succeeds 12.: Fails (expected) 13.: succeeds 14.: succeeds """ inst = topology[0] # Enable/configure retroCL plugin = RetroChangelogPlugin(inst) plugin.disable() plugin.enable() plugin.set('nsslapd-attribute', 'nsuniqueid:targetuniqueid') # Enable sync plugin plugin = ContentSyncPlugin(inst) plugin.enable() # Enable automember plugin = AutoMembershipPlugin(inst) plugin.disable() plugin.enable() # Add the automember group groups = Groups(inst, DEFAULT_SUFFIX) group = [] for i in range(1,5): > group.append(groups.create(properties={'cn': 'group%d' % i})) suites/syncrepl_plugin/basic_test.py:470: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1169: in create return co.create(rdn, properties, self._basedn) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e7249910> func = <built-in method result4 of LDAP object at 0x7f21e70457e0> args = (30, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.ALREADY_EXISTS: {'msgtype': 105, 'msgid': 30, 'result': 68, 'desc': 'Already exists', 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: ALREADY_EXISTS | |||
Failed | tickets/ticket47781_test.py::test_ticket47781 | 3.54 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e6f08a60> def test_ticket47781(topology_st): """ Testing for a deadlock after doing an online import of an LDIF with replication data. The replication agreement should be invalid. """ log.info('Testing Ticket 47781 - Testing for deadlock after importing LDIF with replication data') master = topology_st.standalone repl = ReplicationManager(DEFAULT_SUFFIX) repl.create_first_master(master) properties = {RA_NAME: r'meTo_$host:$port', RA_BINDDN: defaultProperties[REPLICATION_BIND_DN], RA_BINDPW: defaultProperties[REPLICATION_BIND_PW], RA_METHOD: defaultProperties[REPLICATION_BIND_METHOD], RA_TRANSPORT_PROT: defaultProperties[REPLICATION_TRANSPORT]} # The agreement should point to a server that does NOT exist (invalid port) repl_agreement = master.agreement.create(suffix=DEFAULT_SUFFIX, host=master.host, port=5555, properties=properties) # # add two entries # log.info('Adding two entries...') master.add_s(Entry(('cn=entry1,dc=example,dc=com', { 'objectclass': 'top person'.split(), 'sn': 'user', 'cn': 'entry1'}))) master.add_s(Entry(('cn=entry2,dc=example,dc=com', { 'objectclass': 'top person'.split(), 'sn': 'user', 'cn': 'entry2'}))) # # export the replication ldif # log.info('Exporting replication ldif...') args = {EXPORT_REPL_INFO: True} exportTask = Tasks(master) exportTask.exportLDIF(DEFAULT_SUFFIX, None, "/tmp/export.ldif", args) # # Restart the server # log.info('Restarting server...') master.stop() master.start() # # Import the ldif # log.info('Import replication LDIF file...') importTask = Tasks(master) args = {TASK_WAIT: True} > importTask.importLDIF(DEFAULT_SUFFIX, None, "/tmp/export.ldif", args) tickets/ticket47781_test.py:85: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.tasks.Tasks object at 0x7f21e7170970> suffix = 'dc=example,dc=com', benamebase = None, input_file = '/tmp/export.ldif' args = {'wait': True} def importLDIF(self, suffix=None, benamebase=None, input_file=None, args=None): ''' Import from a LDIF format a given 'suffix' (or 'benamebase' that stores that suffix). It uses an internal task to acheive this request. If 'suffix' and 'benamebase' are specified, it uses 'benamebase' first else 'suffix'. If both 'suffix' and 'benamebase' are missing it raise ValueError 'input_file' is the ldif input file @param suffix - suffix of the backend @param benamebase - 'commonname'/'cn' of the backend (e.g. 'userRoot') @param ldif_input - file that will contain the entries in LDIF format to import @param args - is a dictionary that contains modifier of the import task wait: True/[False] - If True, 'export' waits for the completion of the task before to return @return None @raise ValueError ''' if self.conn.state != DIRSRV_STATE_ONLINE: raise ValueError("Invalid Server State %s! Must be online" % self.conn.state) # Checking the parameters if not benamebase and not suffix: raise ValueError("Specify either bename or suffix") if not input_file: raise ValueError("input_file is mandatory") if not os.path.exists(input_file): > raise ValueError("Import file (%s) does not exist" % input_file) E ValueError: Import file (/tmp/export.ldif) does not exist /usr/local/lib/python3.8/site-packages/lib389/tasks.py:470: ValueError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:564 Export task export_09292020_223120 for file /tmp/export.ldif completed successfully | |||
Failed | tickets/ticket47973_test.py::test_ticket47973_case | 5.08 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e592adf0> def test_ticket47973_case(topology_st): log.info('Testing Ticket 47973 (case) - Test the cases in the original schema are preserved.') log.info('case 1 - Test the cases in the original schema are preserved.') tsfile = topology_st.standalone.schemadir + '/98test.ldif' tsfd = open(tsfile, "w") Mozattr0 = "MoZiLLaaTTRiBuTe" testschema = "dn: cn=schema\nattributetypes: ( 8.9.10.11.12.13.14 NAME '" + Mozattr0 + "' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN 'Mozilla Dummy Schema' )\nobjectclasses: ( 1.2.3.4.5.6.7 NAME 'MozillaObject' SUP top MUST ( objectclass $ cn ) MAY ( " + Mozattr0 + " ) X-ORIGIN 'user defined' )" tsfd.write(testschema) tsfd.close() try: # run the schema reload task with the default schemadir topology_st.standalone.tasks.schemaReload(schemadir=topology_st.standalone.schemadir, args={TASK_WAIT: False}) except ValueError: log.error('Schema Reload task failed.') assert False time.sleep(5) try: schemaentry = topology_st.standalone.search_s("cn=schema", ldap.SCOPE_BASE, 'objectclass=top', ["objectclasses"]) oclist = schemaentry[0].data.get("objectclasses") except ldap.LDAPError as e: log.error('Failed to get schema entry: error (%s)' % e.args[0]['desc']) raise e found = 0 for oc in oclist: log.info('OC: %s' % oc) moz = re.findall(Mozattr0, oc.decode('utf-8')) if moz: found = 1 log.info('case 1: %s is in the objectclasses list -- PASS' % Mozattr0) if found == 0: log.error('case 1: %s is not in the objectclasses list -- FAILURE' % Mozattr0) > assert False E assert False tickets/ticket47973_test.py:156: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:1166 Schema Reload task (task-09292020_224000) completed successfully [1m[31mERROR [0m tests.tickets.ticket47973_test:ticket47973_test.py:155 case 1: MoZiLLaaTTRiBuTe is not in the objectclasses list -- FAILURE | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_init | 6.25 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_init(topology_m2): """ It adds - Objectclass with MAY 'member' - an entry ('bind_entry') with which we bind to test the 'SELFDN' operation It deletes the anonymous aci """ _header(topology_m2, 'test_ticket47988_init') # enable acl error logging mod = [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', ensure_bytes(str(8192)))] # REPL topology_m2.ms["master1"].modify_s(DN_CONFIG, mod) topology_m2.ms["master2"].modify_s(DN_CONFIG, mod) mod = [(ldap.MOD_REPLACE, 'nsslapd-accesslog-level', ensure_bytes(str(260)))] # Internal op topology_m2.ms["master1"].modify_s(DN_CONFIG, mod) topology_m2.ms["master2"].modify_s(DN_CONFIG, mod) # add dummy entries for cpt in range(MAX_OTHERS): name = "%s%d" % (OTHER_NAME, cpt) topology_m2.ms["master1"].add_s(Entry(("cn=%s,%s" % (name, SUFFIX), { 'objectclass': "top person".split(), 'sn': name, 'cn': name}))) # check that entry 0 is replicated before loop = 0 entryDN = "cn=%s0,%s" % (OTHER_NAME, SUFFIX) while loop <= 10: try: ent = topology_m2.ms["master2"].getEntry(entryDN, ldap.SCOPE_BASE, "(objectclass=*)", ['telephonenumber']) break except ldap.NO_SUCH_OBJECT: time.sleep(1) loop += 1 assert (loop <= 10) topology_m2.ms["master1"].stop(timeout=10) topology_m2.ms["master2"].stop(timeout=10) # install the specific schema M1: ipa3.3, M2: ipa4.1 schema_file = os.path.join(topology_m2.ms["master1"].getDir(__file__, DATA_DIR), "ticket47988/schema_ipa3.3.tar.gz") _install_schema(topology_m2.ms["master1"], schema_file) schema_file = os.path.join(topology_m2.ms["master1"].getDir(__file__, DATA_DIR), "ticket47988/schema_ipa4.1.tar.gz") _install_schema(topology_m2.ms["master2"], schema_file) > topology_m2.ms["master1"].start(timeout=10) /export/tests/tickets/ticket47988_test.py:157: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT) /usr/lib64/python3.8/subprocess.py:411: in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ input = None, capture_output = False, timeout = None, check = True popenargs = (['systemctl', 'start', 'dirsrv@master1'],) kwargs = {'stderr': -2, 'stdout': -1} process = <subprocess.Popen object at 0x7f21e5770730> stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n' stderr = None, retcode = 1 def run(*popenargs, input=None, capture_output=False, timeout=None, check=False, **kwargs): """Run command with arguments and return a CompletedProcess instance. The returned instance will have attributes args, returncode, stdout and stderr. By default, stdout and stderr are not captured, and those attributes will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. If check is True and the exit code was non-zero, it raises a CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute, and output & stderr attributes if those streams were captured. If timeout is given, and the process takes too long, a TimeoutExpired exception will be raised. There is an optional argument "input", allowing you to pass bytes or a string to the subprocess's stdin. If you use this argument you may not also use the Popen constructor's "stdin" argument, as it will be used internally. By default, all communication is in bytes, and therefore any "input" should be bytes, and the stdout and stderr will be bytes. If in text mode, any "input" should be a string, and stdout and stderr will be strings decoded according to locale encoding, or by "encoding" if set. Text mode is triggered by setting any of text, encoding, errors or universal_newlines. The other arguments are the same as for the Popen constructor. """ if input is not None: if kwargs.get('stdin') is not None: raise ValueError('stdin and input arguments may not both be used.') kwargs['stdin'] = PIPE if capture_output: if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None: raise ValueError('stdout and stderr arguments may not be used ' 'with capture_output.') kwargs['stdout'] = PIPE kwargs['stderr'] = PIPE with Popen(*popenargs, **kwargs) as process: try: stdout, stderr = process.communicate(input, timeout=timeout) except TimeoutExpired as exc: process.kill() if _mswindows: # Windows accumulates the output in a single blocking # read() call run on child threads, with the timeout # being done in a join() on those threads. communicate() # _after_ kill() is required to collect that and add it # to the exception. exc.stdout, exc.stderr = process.communicate() else: # POSIX _communicate already populated the output so # far into the TimeoutExpired exception. process.wait() raise except: # Including KeyboardInterrupt, communicate handled that. process.kill() # We don't call process.wait() as .__exit__ does that for us. raise retcode = process.poll() if check and retcode: > raise CalledProcessError(retcode, process.args, output=stdout, stderr=stderr) E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1. /usr/lib64/python3.8/subprocess.py:512: CalledProcessError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a94cd8fa-b971-4ef6-9d77-733d93d0b310 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0723583b-298d-47b3-97f8-9300e3a7b02c / got description=a94cd8fa-b971-4ef6-9d77-733d93d0b310) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_init [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/02common.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-admin.ldif [32mINFO [0m lib389:ticket47988_test.py:98 replace /etc/dirsrv/slapd-master1/schema/99user.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60nss-ldap.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60autofs.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-web.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60samba.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10dna-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc4523.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60basev2.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10automember-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc2927.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10mep-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60ipadns.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10rfc2307.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-mail.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc4524.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60trust.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60ipaconfig.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-directory.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60eduperson.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60mozilla.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/65ipasudo.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60rfc3712.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60rfc2739.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-value.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60acctpolicy.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/01core389.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60sabayon.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60pam-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/00core.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/25java-object.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60sudo.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/70ipaotp.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60pureftpd.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/61kerberos-ipav3.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60kerberos.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60basev3.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/06inetorgperson.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/30ns-common.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/28pilot.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/20subscriber.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-certificate.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60posix-winsync-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/02common.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-admin.ldif [32mINFO [0m lib389:ticket47988_test.py:98 replace /etc/dirsrv/slapd-master2/schema/99user.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60nss-ldap.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60autofs.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-web.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60samba.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10dna-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc4523.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60basev2.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10automember-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc2927.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10mep-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60ipadns.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10rfc2307.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-mail.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc4524.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60trust.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60ipaconfig.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-directory.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60eduperson.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60mozilla.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/65ipasudo.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60rfc3712.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60rfc2739.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-value.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60acctpolicy.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/01core389.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60sabayon.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60pam-plugin.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/00core.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/25java-object.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60sudo.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/70ipaotp.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60pureftpd.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/61kerberos-ipav3.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60kerberos.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60basev3.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/06inetorgperson.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/30ns-common.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/28pilot.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/20subscriber.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-certificate.ldif [32mINFO [0m lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60posix-winsync-plugin.ldif | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_1 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_1(topology_m2): ''' Check that replication is working and pause replication M2->M1 ''' _header(topology_m2, 'test_ticket47988_1') topology_m2.ms["master1"].log.debug("\n\nCheck that replication is working and pause replication M2->M1\n") > _do_update_entry(supplier=topology_m2.ms["master2"], consumer=topology_m2.ms["master1"], attempts=5) /export/tests/tickets/ticket47988_test.py:234: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:184: in _do_update_entry supplier.modify_s(entryDN, mod) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57508b0> func = <built-in method result4 of LDAP object at 0x7f21e576ef00> args = (26, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_1 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_2 | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_2(topology_m2): ''' Update M1 schema and trigger update M1->M2 So M1 should learn new/extended definitions that are in M2 schema ''' _header(topology_m2, 'test_ticket47988_2') topology_m2.ms["master1"].log.debug("\n\nUpdate M1 schema and an entry on M1\n") > master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn() /export/tests/tickets/ticket47988_test.py:246: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE, /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:864: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/local/lib/python3.8/site-packages/lib389/__init__.py:148: in inner objtype, data = f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:756: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:760: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57399d0> func = <built-in method result4 of LDAP object at 0x7f21e57f3ba0> args = (62, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_2 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_3 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_3(topology_m2): ''' Resume replication M2->M1 and check replication is still working ''' _header(topology_m2, 'test_ticket47988_3') > _resume_M2_to_M1(topology_m2) /export/tests/tickets/ticket47988_test.py:283: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:222: in _resume_M2_to_M1 ents = topology_m2.ms["master2"].agreement.list(suffix=SUFFIX) /usr/local/lib/python3.8/site-packages/lib389/agreement.py:905: in list replica_entries = self.conn.replica.list(suffix) /usr/local/lib/python3.8/site-packages/lib389/replica.py:178: in list ents = self.conn.search_s(base, ldap.SCOPE_SUBTREE, filtr) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext return self._ldap_call( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57508b0> func = <built-in method search_ext of LDAP object at 0x7f21e576ef00> args = ('cn=mapping tree,cn=config', 2, '(&(objectclass=nsds5Replica)(nsDS5ReplicaRoot=dc=example,dc=com))', None, 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_3 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### [32mINFO [0m lib389:ticket47988_test.py:221 ######################### resume RA M2->M1 ###################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_4 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_4(topology_m2): ''' Check schemaCSN is identical on both server And save the nsschemaCSN to later check they do not change unexpectedly ''' _header(topology_m2, 'test_ticket47988_4') > master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn() /export/tests/tickets/ticket47988_test.py:295: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE, /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext return self._ldap_call( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57399d0> func = <built-in method search_ext of LDAP object at 0x7f21e57f3ba0> args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_4 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_5 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_5(topology_m2): ''' Check schemaCSN do not change unexpectedly ''' _header(topology_m2, 'test_ticket47988_5') > _do_update_entry(supplier=topology_m2.ms["master1"], consumer=topology_m2.ms["master2"], attempts=5) /export/tests/tickets/ticket47988_test.py:313: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:184: in _do_update_entry supplier.modify_s(entryDN, mod) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:612: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:609: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57399d0> func = <built-in method modify_ext of LDAP object at 0x7f21e57f3ba0> args = ('cn=other_entry0,dc=example,dc=com', [(2, 'telephonenumber', b'185')], None, None) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_5 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_6 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5739970> def test_ticket47988_6(topology_m2): ''' Update M1 schema and trigger update M2->M1 So M2 should learn new/extended definitions that are in M1 schema ''' _header(topology_m2, 'test_ticket47988_6') topology_m2.ms["master1"].log.debug("\n\nUpdate M1 schema and an entry on M1\n") > master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn() /export/tests/tickets/ticket47988_test.py:336: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE, /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext return self._ldap_call( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e57399d0> func = <built-in method search_ext of LDAP object at 0x7f21e57f3ba0> args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47988_test.py:64 ############################################### [32mINFO [0m lib389:ticket47988_test.py:65 ####### [32mINFO [0m lib389:ticket47988_test.py:66 ####### test_ticket47988_6 [32mINFO [0m lib389:ticket47988_test.py:67 ####### [32mINFO [0m lib389:ticket47988_test.py:68 ################################################### | |||
Failed | tickets/ticket48005_test.py::test_ticket48005_usn | 4.58 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e56cf160> def test_ticket48005_usn(topology_st): ''' Enable entryusn Delete all user entries. Run USN tombstone cleanup task Shutdown the server Check if a core file was generated or not If no core was found, this test case was successful. ''' log.info("Ticket 48005 usn test...") topology_st.standalone.plugins.enable(name=PLUGIN_USN) topology_st.standalone.restart(timeout=10) try: > entries = topology_st.standalone.search_s(SUFFIX, ldap.SCOPE_SUBTREE, "(objectclass=inetorgperson)") /export/tests/tickets/ticket48005_test.py:283: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:864: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/local/lib/python3.8/site-packages/lib389/__init__.py:148: in inner objtype, data = f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:756: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:760: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e56cfe50> func = <built-in method result4 of LDAP object at 0x7f21e5482a80> args = (3, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.NO_SUCH_OBJECT: {'msgtype': 101, 'msgid': 3, 'result': 32, 'desc': 'No such object', 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: NO_SUCH_OBJECT -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:277 Ticket 48005 usn test... | |||
Failed | tickets/ticket48013_test.py::test_ticket48013 | 1.55 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e591bf40> def test_ticket48013(topology_st): ''' Content Synchonization: Test that invalid cookies are caught ''' cookies = ('#', '##', 'a#a#a', 'a#a#1') # Enable dynamic plugins try: topology_st.standalone.modify_s(DN_CONFIG, [(ldap.MOD_REPLACE, 'nsslapd-dynamic-plugins', b'on')]) except ldap.LDAPError as e: log.error('Failed to enable dynamic plugin! {}'.format(e.args[0]['desc'])) assert False # Enable retro changelog topology_st.standalone.plugins.enable(name=PLUGIN_RETRO_CHANGELOG) # Enbale content sync plugin > topology_st.standalone.plugins.enable(name=PLUGIN_REPL_SYNC) /export/tests/tickets/ticket48013_test.py:61: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/plugins.py:2102: in enable plugin.enable() /usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable self.set('nsslapd-pluginEnabled', 'on') /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set return self._instance.modify_ext_s(self._dn, [(action, key, value)], /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e591b5e0> func = <built-in method result4 of LDAP object at 0x7f21e57c5f90> args = (7, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Failed | tickets/ticket48194_test.py::test_run_1 | 7.09 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_1(topology_st): """ Check nsSSL3Ciphers: +all All ciphers are enabled except null. Note: default allowWeakCipher (i.e., off) for +all """ _header(topology_st, 'Test Case 2 - Check the ciphers availability for "+all" with default allowWeakCiphers') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', b'64')]) # Make sure allowWeakCipher is not set. topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'allowWeakCipher', None)]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_0' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) /export/tests/tickets/ticket48194_test.py:158: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'DES-CBC3-SHA', expect = False def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: assert False else: proc.stdin.close() assert True else: if b'(NONE)' in l: assert True else: proc.stdin.close() > assert False E assert False /export/tests/tickets/ticket48194_test.py:117: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 2 - Check the ciphers availability for "+all" with default allowWeakCiphers [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:151 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Failed | tickets/ticket48194_test.py::test_run_2 | 6.63 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_2(topology_st): """ Check nsSSL3Ciphers: +rsa_aes_128_sha,+rsa_aes_256_sha rsa_aes_128_sha, tls_rsa_aes_128_sha, rsa_aes_256_sha, tls_rsa_aes_256_sha are enabled. default allowWeakCipher """ _header(topology_st, 'Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha" with default allowWeakCipher') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'+rsa_aes_128_sha,+rsa_aes_256_sha')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_1' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) connectWithOpenssl(topology_st, 'AES256-SHA256', False) > connectWithOpenssl(topology_st, 'AES128-SHA', True) /export/tests/tickets/ticket48194_test.py:184: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'AES128-SHA', expect = True def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: > assert False E assert False /export/tests/tickets/ticket48194_test.py:108: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha" with default allowWeakCipher [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:175 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES128-SHA -- expect to handshake successfully [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES128-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' | |||
Failed | tickets/ticket48194_test.py::test_run_4 | 6.82 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_4(topology_st): """ Check no nsSSL3Ciphers Default ciphers are enabled. default allowWeakCipher """ _header(topology_st, 'Test Case 5 - Check no nsSSL3Ciphers (-all) with default allowWeakCipher') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'nsSSL3Ciphers', b'-all')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_3' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) /export/tests/tickets/ticket48194_test.py:228: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'DES-CBC3-SHA', expect = False def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: assert False else: proc.stdin.close() assert True else: if b'(NONE)' in l: assert True else: proc.stdin.close() > assert False E assert False /export/tests/tickets/ticket48194_test.py:117: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 5 - Check no nsSSL3Ciphers (-all) with default allowWeakCipher [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:221 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Failed | tickets/ticket48194_test.py::test_run_5 | 6.87 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_5(topology_st): """ Check nsSSL3Ciphers: default Default ciphers are enabled. default allowWeakCipher """ _header(topology_st, 'Test Case 6 - Check default nsSSL3Ciphers (default setting) with default allowWeakCipher') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'default')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_4' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) /export/tests/tickets/ticket48194_test.py:250: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'DES-CBC3-SHA', expect = False def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: assert False else: proc.stdin.close() assert True else: if b'(NONE)' in l: assert True else: proc.stdin.close() > assert False E assert False /export/tests/tickets/ticket48194_test.py:117: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 6 - Check default nsSSL3Ciphers (default setting) with default allowWeakCipher [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:243 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Failed | tickets/ticket48194_test.py::test_run_6 | 6.76 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_6(topology_st): """ Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256 All ciphers are disabled. default allowWeakCipher """ _header(topology_st, 'Test Case 7 - Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256 with default allowWeakCipher') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'+all,-TLS_RSA_WITH_AES_256_CBC_SHA256')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_5' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) /export/tests/tickets/ticket48194_test.py:274: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'DES-CBC3-SHA', expect = False def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: assert False else: proc.stdin.close() assert True else: if b'(NONE)' in l: assert True else: proc.stdin.close() > assert False E assert False /export/tests/tickets/ticket48194_test.py:117: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 7 - Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256 with default allowWeakCipher [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:267 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Failed | tickets/ticket48194_test.py::test_run_8 | 6.93 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> def test_run_8(topology_st): """ Check nsSSL3Ciphers: default + allowWeakCipher: off Strong Default ciphers are enabled. """ _header(topology_st, 'Test Case 9 - Check default nsSSL3Ciphers (default setting + allowWeakCipher: off)') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'default'), (ldap.MOD_REPLACE, 'allowWeakCipher', b'off')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_7' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False) /export/tests/tickets/ticket48194_test.py:297: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f21e571dfd0> cipher = 'DES-CBC3-SHA', expect = False def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = " ".join(cmdline) log.info("Running cmdline: %s", strcmdline) try: proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) except ValueError: log.info("%s failed: %s", cmdline, ValueError) proc.kill() while True: l = proc.stdout.readline() if l == b"": break if b'Cipher is' in l: log.info("Found: %s", l) if expect: if b'(NONE)' in l: assert False else: proc.stdin.close() assert True else: if b'(NONE)' in l: assert True else: proc.stdin.close() > assert False E assert False /export/tests/tickets/ticket48194_test.py:117: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 9 - Check default nsSSL3Ciphers (default setting + allowWeakCipher: off) [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:290 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Failed | tickets/ticket48266_test.py::test_ticket48266_count_csn_evaluation | 0.21 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5381a30> entries = None def test_ticket48266_count_csn_evaluation(topology_m2, entries): ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX) assert len(ents) == 1 > first_csn = _get_first_not_replicated_csn(topology_m2) /export/tests/tickets/ticket48266_test.py:176: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e5381a30> def _get_first_not_replicated_csn(topology_m2): name = "cn=%s2,%s" % (NEW_ACCOUNT, SUFFIX) # read the first CSN that will not be replicated mod = [(ldap.MOD_REPLACE, 'telephonenumber', ensure_bytes('123456'))] topology_m2.ms["master1"].modify_s(name, mod) msgid = topology_m2.ms["master1"].search_ext(name, ldap.SCOPE_SUBTREE, 'objectclass=*', ['nscpentrywsi']) rtype, rdata, rmsgid = topology_m2.ms["master1"].result2(msgid) attrs = None for dn, raw_attrs in rdata: topology_m2.ms["master1"].log.info("dn: %s" % dn) if 'nscpentrywsi' in raw_attrs: attrs = raw_attrs['nscpentrywsi'] assert attrs for attr in attrs: if ensure_str(attr.lower()).startswith('telephonenumber'): break assert attr log.info("############# %s " % name) # now retrieve the CSN of the operation we are looking for csn = None found_ops = topology_m2.ms['master1'].ds_access_log.match(".*MOD dn=\"%s\".*" % name) assert(len(found_ops) > 0) found_op = topology_m2.ms['master1'].ds_access_log.parse_line(found_ops[-1]) log.info(found_op) # Now look for the related CSN found_csns = topology_m2.ms['master1'].ds_access_log.match(".*conn=%s op=%s RESULT.*" % (found_op['conn'], found_op['op'])) assert(len(found_csns) > 0) found_csn = topology_m2.ms['master1'].ds_access_log.parse_line(found_csns[-1]) log.info(found_csn) > return found_csn['csn'] E KeyError: 'csn' /export/tests/tickets/ticket48266_test.py:147: KeyError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48266_test.py:125 dn: cn=new_account2,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:134 ############# cn=new_account2,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:140 {'action': 'MOD', 'timestamp': '[29/Sep/2020:22:46:43.075889519 -0400]', 'conn': '1', 'op': '11', 'rem': 'dn="cn=new_account2,dc=example,dc=com"', 'datetime': datetime.datetime(2020, 10, 29, 22, 0, 0, 75889, tzinfo=tzoffset(None, -14400))} [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:146 {'action': 'RESULT', 'timestamp': '[29/Sep/2020:22:46:43.138770571 -0400]', 'conn': '1', 'op': '11', 'rem': 'err=0 tag=103 nentries=0 wtime=0.000117112 optime=0.062891133 etime=0.062996074 csn=5f73f193000000010000', 'datetime': datetime.datetime(2020, 10, 29, 22, 0, 0, 138770, tzinfo=tzoffset(None, -14400))} | |||
Failed | tickets/ticket48325_test.py::test_ticket48325 | 0.01 | |
topology_m1h1c1 = <lib389.topologies.TopologyMain object at 0x7f21e5484760> def test_ticket48325(topology_m1h1c1): """ Test that the RUV element order is correctly maintained when promoting a hub or consumer. """ # # Promote consumer to master # C1 = topology_m1h1c1.cs["consumer1"] M1 = topology_m1h1c1.ms["master1"] H1 = topology_m1h1c1.hs["hub1"] repl = ReplicationManager(DEFAULT_SUFFIX) > repl._ensure_changelog(C1) /export/tests/tickets/ticket48325_test.py:53: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/replica.py:1912: in _ensure_changelog cl.create(properties={ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e54a4490> func = <built-in method result4 of LDAP object at 0x7f21e54a7e40> args = (15, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 15, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:515 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect af53793a-ff93-450d-b3bf-7cf8357480d5 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2195 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect a5ac3aec-e8e4-47b9-bce0-641d400404a1 / got description=af53793a-ff93-450d-b3bf-7cf8357480d5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working | |||
Failed | tickets/ticket48637_test.py::test_ticket48637 | 4.87 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e5702cd0> def test_ticket48637(topology_st): """Test for entry cache corruption This requires automember and managed entry plugins to be configured. Then remove the group that automember would use to trigger a failure when adding a new entry. Automember fails, and then managed entry also fails. Make sure a base search on the entry returns error 32 """ if DEBUGGING: # Add debugging steps(if any)... pass # # Add our setup entries # try: topology_st.standalone.add_s(Entry((PEOPLE_OU, { 'objectclass': 'top organizationalunit'.split(), 'ou': 'people'}))) except ldap.ALREADY_EXISTS: pass except ldap.LDAPError as e: log.fatal('Failed to add people ou: ' + str(e)) assert False try: topology_st.standalone.add_s(Entry((GROUP_OU, { 'objectclass': 'top organizationalunit'.split(), 'ou': 'groups'}))) except ldap.ALREADY_EXISTS: pass except ldap.LDAPError as e: log.fatal('Failed to add groups ou: ' + str(e)) assert False try: topology_st.standalone.add_s(Entry((MEP_OU, { 'objectclass': 'top extensibleObject'.split(), 'ou': 'mep'}))) except ldap.LDAPError as e: log.fatal('Failed to add MEP ou: ' + str(e)) assert False try: topology_st.standalone.add_s(Entry((MEP_TEMPLATE, { 'objectclass': 'top mepTemplateEntry'.split(), 'cn': 'mep template', 'mepRDNAttr': 'cn', 'mepStaticAttr': 'objectclass: groupofuniquenames', 'mepMappedAttr': 'cn: $uid'}))) except ldap.LDAPError as e: log.fatal('Failed to add MEP ou: ' + str(e)) assert False # # Configure automember # try: topology_st.standalone.add_s(Entry((AUTO_DN, { 'cn': 'All Users', 'objectclass': ['top', 'autoMemberDefinition'], 'autoMemberScope': 'dc=example,dc=com', 'autoMemberFilter': 'objectclass=person', 'autoMemberDefaultGroup': GROUP_DN, 'autoMemberGroupingAttr': 'uniquemember:dn'}))) except ldap.LDAPError as e: log.fatal('Failed to configure automember plugin : ' + str(e)) assert False # # Configure managed entry plugin # try: topology_st.standalone.add_s(Entry((MEP_DN, { 'cn': 'MEP Definition', 'objectclass': ['top', 'extensibleObject'], 'originScope': 'ou=people,dc=example,dc=com', 'originFilter': 'objectclass=person', 'managedBase': 'ou=groups,dc=example,dc=com', 'managedTemplate': MEP_TEMPLATE}))) except ldap.LDAPError as e: log.fatal('Failed to configure managed entry plugin : ' + str(e)) assert False # # Restart DS # topology_st.standalone.restart(timeout=30) # # Add entry that should fail since the automember group does not exist # try: topology_st.standalone.add_s(Entry((USER_DN, { 'uid': 'test', 'objectclass': ['top', 'person', 'extensibleObject'], 'sn': 'test', 'cn': 'test'}))) except ldap.LDAPError as e: pass # # Search for the entry - it should not be returned # try: entry = topology_st.standalone.search_s(USER_DN, ldap.SCOPE_SUBTREE, 'objectclass=*') if entry: log.fatal('Entry was incorrectly returned') > assert False E assert False /export/tests/tickets/ticket48637_test.py:139: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket48637_test:ticket48637_test.py:138 Entry was incorrectly returned | |||
Failed | tickets/ticket48784_test.py::test_ticket48784 | 35.07 | |
Fixture "add_entry" called directly. Fixtures are not meant to be called directly, but are created automatically when test functions request them as parameters. See https://docs.pytest.org/en/latest/fixture.html for more information about fixtures, and https://docs.pytest.org/en/latest/deprecations.html#calling-fixtures-directly about how to update your code. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 79481753-468d-466d-a0b5-b6119e06811c / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d49be89f-c780-447f-b7b6-ae8db9726144 / got description=79481753-468d-466d-a0b5-b6119e06811c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:90 Ticket 48784 - Allow usage of OpenLDAP libraries that don't use NSS for crypto [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:50 ######################### Configure SSL/TLS agreements ###################### [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:51 ######################## master1 <-- startTLS -> master2 ##################### [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:53 ##### Update the agreement of master1 [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:58 ##### Update the agreement of master2 [32mINFO [0m tests.tickets.ticket48784_test:ticket48784_test.py:68 ######################### Configure SSL/TLS agreements Done ###################### | |||
Failed | tickets/ticket48798_test.py::test_ticket48798 | 13.35 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e4e17700> def test_ticket48798(topology_st): """ Test DH param sizes offered by DS. """ topology_st.standalone.enable_tls() # Confirm that we have a connection, and that it has DH # Open a socket to the port. # Check the security settings. > size = check_socket_dh_param_size(topology_st.standalone.host, topology_st.standalone.sslport) /export/tests/tickets/ticket48798_test.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket48798_test.py:23: in check_socket_dh_param_size output = check_output(cmd, shell=True) /usr/lib64/python3.8/subprocess.py:411: in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ input = None, capture_output = False, timeout = None, check = True popenargs = ('echo quit | openssl s_client -connect ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63601 -msg -cipher DH | grep -A 1 ServerKeyExchange',) kwargs = {'shell': True, 'stdout': -1} process = <subprocess.Popen object at 0x7f21e4e13190>, stdout = b'' stderr = None, retcode = 1 def run(*popenargs, input=None, capture_output=False, timeout=None, check=False, **kwargs): """Run command with arguments and return a CompletedProcess instance. The returned instance will have attributes args, returncode, stdout and stderr. By default, stdout and stderr are not captured, and those attributes will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them. If check is True and the exit code was non-zero, it raises a CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute, and output & stderr attributes if those streams were captured. If timeout is given, and the process takes too long, a TimeoutExpired exception will be raised. There is an optional argument "input", allowing you to pass bytes or a string to the subprocess's stdin. If you use this argument you may not also use the Popen constructor's "stdin" argument, as it will be used internally. By default, all communication is in bytes, and therefore any "input" should be bytes, and the stdout and stderr will be bytes. If in text mode, any "input" should be a string, and stdout and stderr will be strings decoded according to locale encoding, or by "encoding" if set. Text mode is triggered by setting any of text, encoding, errors or universal_newlines. The other arguments are the same as for the Popen constructor. """ if input is not None: if kwargs.get('stdin') is not None: raise ValueError('stdin and input arguments may not both be used.') kwargs['stdin'] = PIPE if capture_output: if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None: raise ValueError('stdout and stderr arguments may not be used ' 'with capture_output.') kwargs['stdout'] = PIPE kwargs['stderr'] = PIPE with Popen(*popenargs, **kwargs) as process: try: stdout, stderr = process.communicate(input, timeout=timeout) except TimeoutExpired as exc: process.kill() if _mswindows: # Windows accumulates the output in a single blocking # read() call run on child threads, with the timeout # being done in a join() on those threads. communicate() # _after_ kill() is required to collect that and add it # to the exception. exc.stdout, exc.stderr = process.communicate() else: # POSIX _communicate already populated the output so # far into the TimeoutExpired exception. process.wait() raise except: # Including KeyboardInterrupt, communicate handled that. process.kill() # We don't call process.wait() as .__exit__ does that for us. raise retcode = process.poll() if check and retcode: > raise CalledProcessError(retcode, process.args, output=stdout, stderr=stderr) E subprocess.CalledProcessError: Command 'echo quit | openssl s_client -connect ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63601 -msg -cipher DH | grep -A 1 ServerKeyExchange' returned non-zero exit status 1. /usr/lib64/python3.8/subprocess.py:512: CalledProcessError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ depth=1 C = AU, ST = Queensland, L = 389ds, O = testing, CN = ssca.389ds.example.com verify return:1 depth=0 C = AU, ST = Queensland, L = 389ds, O = testing, GN = f9391d31-089a-4f42-be81-5cf077bd706e, CN = ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com verify error:num=7:certificate signature failure verify return:1 depth=0 C = AU, ST = Queensland, L = 389ds, O = testing, GN = f9391d31-089a-4f42-be81-5cf077bd706e, CN = ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com verify return:1 DONE | |||
Failed | tickets/ticket48961_test.py::test_ticket48961_storagescheme | 0.01 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e54b92b0> def test_ticket48961_storagescheme(topology_st): """ Test deleting of the storage scheme. """ default = topology_st.standalone.config.get_attr_val('passwordStorageScheme') # Change it topology_st.standalone.config.set('passwordStorageScheme', 'CLEAR') # Now delete it > topology_st.standalone.config.remove('passwordStorageScheme', None) /export/tests/tickets/ticket48961_test.py:28: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:316: in remove self.set(key, value, action=ldap.MOD_DELETE) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set return self._instance.modify_ext_s(self._dn, [(action, key, value)], /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e52defd0> func = <built-in method result4 of LDAP object at 0x7f21e54bb240> args = (5, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.OPERATIONS_ERROR: {'msgtype': 103, 'msgid': 5, 'result': 1, 'desc': 'Operations error', 'ctrls': [], 'info': 'passwordStorageScheme: deleting the value is not allowed.'} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: OPERATIONS_ERROR -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Failed | tickets/ticket48961_test.py::test_ticket48961_deleteall | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e54b92b0> def test_ticket48961_deleteall(topology_st): """ Test that we can delete all valid attrs, and that a few are rejected. """ attr_to_test = { 'nsslapd-listenhost': 'localhost', 'nsslapd-securelistenhost': 'localhost', 'nsslapd-allowed-sasl-mechanisms': 'GSSAPI', 'nsslapd-svrtab': 'Some bogus data', # This one could reset? } attr_to_fail = { # These are the values that should always be dn dse.ldif too 'nsslapd-localuser': 'dirsrv', 'nsslapd-defaultnamingcontext': 'dc=example,dc=com', # Can't delete 'nsslapd-accesslog': '/opt/dirsrv/var/log/dirsrv/slapd-standalone/access', 'nsslapd-auditlog': '/opt/dirsrv/var/log/dirsrv/slapd-standalone/audit', 'nsslapd-errorlog': '/opt/dirsrv/var/log/dirsrv/slapd-standalone/errors', 'nsslapd-tmpdir': '/tmp', 'nsslapd-rundir': '/opt/dirsrv/var/run/dirsrv', 'nsslapd-bakdir': '/opt/dirsrv/var/lib/dirsrv/slapd-standalone/bak', 'nsslapd-certdir': '/opt/dirsrv/etc/dirsrv/slapd-standalone', 'nsslapd-instancedir': '/opt/dirsrv/lib/dirsrv/slapd-standalone', 'nsslapd-ldifdir': '/opt/dirsrv/var/lib/dirsrv/slapd-standalone/ldif', 'nsslapd-lockdir': '/opt/dirsrv/var/lock/dirsrv/slapd-standalone', 'nsslapd-schemadir': '/opt/dirsrv/etc/dirsrv/slapd-standalone/schema', 'nsslapd-workingdir': '/opt/dirsrv/var/log/dirsrv/slapd-standalone', 'nsslapd-localhost': 'localhost.localdomain', # These can't be reset, but might be in dse.ldif. Probably in libglobs. 'nsslapd-certmap-basedn': 'cn=certmap,cn=config', 'nsslapd-port': '38931', # Can't delete 'nsslapd-secureport': '636', # Can't delete 'nsslapd-conntablesize': '1048576', 'nsslapd-rootpw': '{SSHA512}...', # These are hardcoded server magic. 'nsslapd-hash-filters': 'off', # Can't delete 'nsslapd-requiresrestart': 'cn=config:nsslapd-port', # Can't change 'nsslapd-plugin': 'cn=case ignore string syntax,cn=plugins,cn=config', # Can't change 'nsslapd-privatenamespaces': 'cn=schema', # Can't change 'nsslapd-allowed-to-delete-attrs': 'None', # Can't delete 'nsslapd-accesslog-list': 'List!', # Can't delete 'nsslapd-auditfaillog-list': 'List!', 'nsslapd-auditlog-list': 'List!', 'nsslapd-errorlog-list': 'List!', 'nsslapd-config': 'cn=config', 'nsslapd-versionstring': '389-Directory/1.3.6.0', 'objectclass': '', 'cn': '', # These are the odd values 'nsslapd-backendconfig': 'cn=config,cn=userRoot,cn=ldbm database,cn=plugins,cn=config', # Doesn't exist? 'nsslapd-betype': 'ldbm database', # Doesn't exist? 'nsslapd-connection-buffer': 1, # Has an ldap problem 'nsslapd-malloc-mmap-threshold': '-10', # Defunct anyway 'nsslapd-malloc-mxfast': '-10', 'nsslapd-malloc-trim-threshold': '-10', 'nsslapd-referralmode': '', 'nsslapd-saslpath': '', 'passwordadmindn': '', } > config_entry = topology_st.standalone.config.raw_entry() /export/tests/tickets/ticket48961_test.py:101: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.config.Config object at 0x7f21e52ded00>, name = 'raw_entry' def __getattr__(self, name): """This enables a bit of magic to allow us to wrap any function ending with _json to it's form without json, then transformed. It means your function *must* return it's values as a dict of: { attr : [val, val, ...], attr : [], ... } to be supported. """ if (name.endswith('_json')): int_name = name.replace('_json', '') pfunc = partial(self._jsonify, getattr(self, int_name)) return pfunc else: > raise AttributeError("'%s' object has no attribute '%s'" % (self.__class__.__name__, name)) E AttributeError: 'Config' object has no attribute 'raw_entry' /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:199: AttributeError | |||
Failed | tickets/ticket48973_test.py::test_ticket48973_homeDirectory_indexing | 9.90 | |
topology = <tests.tickets.ticket48973_test.TopologyStandalone object at 0x7f21e500ce20> def test_ticket48973_homeDirectory_indexing(topology): """ Check that homedirectory is indexed with syntax (ces) - triggers index - no failure on index - do a search indexed with exact value (ces) and no default_mr_indexer_create warning - do a search indexed with uppercase value (ces) and no default_mr_indexer_create warning """ entry_ext = 1 try: ent = topology.standalone.getEntry(HOMEDIRECTORY_INDEX, ldap.SCOPE_BASE) except ldap.NO_SUCH_OBJECT: topology.standalone.add_s(Entry((HOMEDIRECTORY_INDEX, { 'objectclass': "top nsIndex".split(), 'cn': HOMEDIRECTORY_CN, 'nsSystemIndex': 'false', 'nsIndexType': 'eq'}))) args = {TASK_WAIT: True} topology.standalone.tasks.reindex(suffix=SUFFIX, attrname='homeDirectory', args=args) log.info("Check indexing succeeded with no specified matching rule") assert not _find_first_indexing_failure(topology, "unknown or invalid matching rule") assert not _find_first_indexing_failure(topology, "default_mr_indexer_create: warning") assert not _find_first_indexing_failure(topology, "default_mr_indexer_create - Plugin .* does not handle") _check_entry(topology, filterHead="homeDirectory", filterValueUpper=False, entry_ext=entry_ext,found=True, indexed=True) > _check_entry(topology, filterHead="homeDirectory:caseExactIA5Match:", filterValueUpper=False, entry_ext=entry_ext, found=True, indexed=False) /export/tests/tickets/ticket48973_test.py:251: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology = <tests.tickets.ticket48973_test.TopologyStandalone object at 0x7f21e500ce20> filterHead = 'homeDirectory:caseExactIA5Match:', filterValueUpper = False entry_ext = 1, found = True, indexed = False def _check_entry(topology, filterHead=None, filterValueUpper=False, entry_ext=None, found=False, indexed=False): # Search with CES with exact value -> find an entry + indexed if filterValueUpper: homehead = HOMEHEAD.upper() else: homehead = HOMEHEAD searchedHome = "%s%d" % (homehead, entry_ext) Filter = "(%s=%s)" % (filterHead, searchedHome) log.info("Search %s" % Filter) ents = topology.standalone.search_s(SUFFIX, ldap.SCOPE_SUBTREE, Filter) if found: assert len(ents) == 1 assert ents[0].hasAttr('homedirectory') valueHome = ensure_bytes("%s%d" % (HOMEHEAD, entry_ext)) assert valueHome in ents[0].getValues('homedirectory') else: assert len(ents) == 0 result = _find_next_notes(topology, Filter) log.info("result=%s" % result) if indexed: assert not "notes=U" in result else: > assert "notes=U" in result E AssertionError: assert 'notes=U' in '[29/Sep/2020:23:02:35.440996648 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000270681 optime=0.004416241 etime=0.004682196\n' /export/tests/tickets/ticket48973_test.py:188: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_230229 completed successfully [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:244 Check indexing succeeded with no specified matching rule [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/home/xyz_1) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:31.629127982 -0400] conn=1 op=10 RESULT err=0 tag=101 nentries=1 wtime=0.000299651 optime=0.000436255 etime=0.000732518 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/home/xyz_1) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:35.440996648 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000270681 optime=0.004416241 etime=0.004682196 | |||
Failed | tickets/ticket49020_test.py::test_ticket49020 | 33.86 | |
T = <lib389.topologies.TopologyMain object at 0x7f21e572ff70> def test_ticket49020(T): A = T.ms['master1'] B = T.ms['master2'] C = T.ms['master3'] A.enableReplLogging() B.enableReplLogging() C.enableReplLogging() AtoB = A.agreement.list(suffix=DEFAULT_SUFFIX)[0].dn AtoC = A.agreement.list(suffix=DEFAULT_SUFFIX)[1].dn CtoB = C.agreement.list(suffix=DEFAULT_SUFFIX)[1].dn A.agreement.pause(AtoB) C.agreement.pause(CtoB) time.sleep(5) name = "userX" dn = "cn={},{}".format(name, DEFAULT_SUFFIX) A.add_s(Entry((dn, {'objectclass': "top person".split(), 'sn': name,'cn': name}))) A.agreement.init(DEFAULT_SUFFIX, socket.gethostname(), PORT_MASTER_3) time.sleep(5) for i in range(1,11): name = "userY{}".format(i) dn = "cn={},{}".format(name, DEFAULT_SUFFIX) A.add_s(Entry((dn, {'objectclass': "top person".split(), 'sn': name,'cn': name}))) time.sleep(5) C.agreement.resume(CtoB) time.sleep(5) A_entries = A.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(objectClass=person)') B_entries = B.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(objectClass=person)') C_entries = C.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(objectClass=person)') assert len(A_entries) == len(C_entries) > assert len(B_entries) == len(A_entries) - 11 E assert 10 == 0 E +10 E -0 /export/tests/tickets/ticket49020_test.py:66: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect eb017d0b-f9da-4098-8924-334ce75f720a / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c29437db-9ecc-41ca-8aa0-a48d3aab3e04 / got description=eb017d0b-f9da-4098-8924-334ce75f720a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 2972712a-d1ca-4e98-a46a-757629261fab / got description=c29437db-9ecc-41ca-8aa0-a48d3aab3e04) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8ade30d9-4497-4c9f-84ec-ca8f18f35773 / got description=2972712a-d1ca-4e98-a46a-757629261fab) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1169 Starting total init cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config | |||
Failed | tickets/ticket49073_test.py::test_ticket49073 | 8.50 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e54f29d0> def test_ticket49073(topology_m2): """Write your replication test here. To access each DirSrv instance use: topology_m2.ms["master1"], topology_m2.ms["master2"], ..., topology_m2.hub1, ..., topology_m2.consumer1,... Also, if you need any testcase initialization, please, write additional fixture for that(include finalizer). """ topology_m2.ms["master1"].plugins.enable(name=PLUGIN_MEMBER_OF) topology_m2.ms["master1"].restart(timeout=10) topology_m2.ms["master2"].plugins.enable(name=PLUGIN_MEMBER_OF) topology_m2.ms["master2"].restart(timeout=10) # Configure fractional to prevent total init to send memberof ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX) assert len(ents) == 1 log.info('update %s to add nsDS5ReplicatedAttributeListTotal' % ents[0].dn) > topology_m2.ms["master1"].modify_s(ents[0].dn, [(ldap.MOD_REPLACE, 'nsDS5ReplicatedAttributeListTotal', '(objectclass=*) $ EXCLUDE '), (ldap.MOD_REPLACE, 'nsDS5ReplicatedAttributeList', '(objectclass=*) $ EXCLUDE memberOf')]) /export/tests/tickets/ticket49073_test.py:97: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:612: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:609: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e54f2af0> func = <built-in method modify_ext of LDAP object at 0x7f21e57d1600> args = ('cn=002,cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsDS5ReplicatedAttributeListTotal', '(objectclass=*) $ EXCLUDE '), (2, 'nsDS5ReplicatedAttributeList', '(objectclass=*) $ EXCLUDE memberOf')], None, None) kwargs = {}, diagnostic_message_success = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E TypeError: ('Tuple_to_LDAPMod(): expected a byte string in the list', '(') /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: TypeError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5699f98f-5a7a-45f9-b6cb-8b42205ec3ee / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b2430062-9c9b-4501-bf02-24d526ea0eb6 / got description=5699f98f-5a7a-45f9-b6cb-8b42205ec3ee) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49073_test:ticket49073_test.py:96 update cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal | |||
Failed | tickets/ticket49192_test.py::test_ticket49192 | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e4e28130> def test_ticket49192(topo): """Trigger deadlock when removing suffix """ # # Create a second suffix/backend # log.info('Creating second backend...') > topo.standalone.backends.create(None, properties={ BACKEND_NAME: "Second_Backend", 'suffix': "o=hang.com", }) /export/tests/tickets/ticket49192_test.py:35: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1169: in create return co.create(rdn, properties, self._basedn) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.backend.Backend object at 0x7f21e5599220>, dn = None properties = {'name': 'Second_Backend', 'suffix': 'o=hang.com'} basedn = 'cn=ldbm database,cn=plugins,cn=config' def create(self, dn=None, properties=None, basedn=DN_LDBM): """Add a new backend entry, create mapping tree, and, if requested, sample entries :param dn: DN of the new entry :type dn: str :param properties: Attributes and parameters for the new entry :type properties: dict :param basedn: Base DN of the new entry :type basedn: str :returns: DSLdapObject of the created entry """ sample_entries = False parent_suffix = False # normalize suffix (remove spaces between comps) if dn is not None: dn_comps = ldap.dn.explode_dn(dn.lower()) dn = ",".join(dn_comps) if properties is not None: > suffix_dn = properties['nsslapd-suffix'].lower() E KeyError: 'nsslapd-suffix' /usr/local/lib/python3.8/site-packages/lib389/backend.py:585: KeyError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49192_test:ticket49192_test.py:34 Creating second backend... | |||
Failed | tickets/ticket49303_test.py::test_ticket49303 | 14.58 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e5098040> def test_ticket49303(topo): """ Test the nsTLSAllowClientRenegotiation setting. """ sslport = SECUREPORT_STANDALONE1 log.info("Ticket 49303 - Allow disabling of SSL renegotiation") # No value set, defaults to reneg allowed enable_ssl(topo.standalone, sslport) > assert try_reneg(HOST_STANDALONE1, sslport) is True E AssertionError: assert False is True E + where False = try_reneg('LOCALHOST', 63601) /export/tests/tickets/ticket49303_test.py:88: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:84 Ticket 49303 - Allow disabling of SSL renegotiation | |||
Failed | tickets/ticket49412_test.py::test_ticket49412 | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e4bf67c0> def test_ticket49412(topo): """Specify a test case purpose or name here :id: 4c7681ff-0511-4256-9589-bdcad84c13e6 :setup: Fill in set up configuration here :steps: 1. Fill in test case steps here 2. And indent them like this (RST format requirement) :expectedresults: 1. Fill in the result that is expected 2. For each test step """ M1 = topo.ms["master1"] # wrong call with invalid value (should be str(60) # that create replace with NULL value # it should fail with UNWILLING_TO_PERFORM try: > M1.modify_s(CHANGELOG, [(ldap.MOD_REPLACE, MAXAGE_ATTR, 60), (ldap.MOD_REPLACE, TRIMINTERVAL, 10)]) /export/tests/tickets/ticket49412_test.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e4e55730> func = <built-in method result4 of LDAP object at 0x7f21e4e2ac60> args = (39, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.NO_SUCH_OBJECT: {'msgtype': 103, 'msgid': 39, 'result': 32, 'desc': 'No such object', 'ctrls': []} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: NO_SUCH_OBJECT -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect aed1a5bc-b567-407d-a778-895c040b57bb / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists | |||
Failed | tickets/ticket49463_test.py::test_ticket_49463 | 229.91 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e56e9550> def test_ticket_49463(topo): """Specify a test case purpose or name here :id: 2a68e8be-387d-4ac7-9452-1439e8483c13 :setup: Fill in set up configuration here :steps: 1. Enable fractional replication 2. Enable replication logging 3. Check that replication is working fine 4. Generate skipped updates to create keep alive entries 5. Remove M3 from the topology 6. issue cleanAllRuv FORCE that will run on M1 then propagated M2 and M4 7. Check that Number DEL keep alive '3' is <= 1 8. Check M1 is the originator of cleanAllRuv and M2/M4 the propagated ones 9. Check replication M1,M2 and M4 can recover 10. Remove M4 from the topology 11. Issue cleanAllRuv not force while M2 is stopped (that hangs the cleanAllRuv) 12. Check that nsds5ReplicaCleanRUV is correctly encoded on M1 (last value: 1) 13. Check that nsds5ReplicaCleanRUV encoding survives M1 restart 14. Check that nsds5ReplicaCleanRUV encoding is valid on M2 (last value: 0) 15. Check that (for M4 cleanAllRUV) M1 is Originator and M2 propagation :expectedresults: 1. No report of failure when the RUV is updated """ # Step 1 - Configure fractional (skip telephonenumber) replication M1 = topo.ms["master1"] M2 = topo.ms["master2"] M3 = topo.ms["master3"] M4 = topo.ms["master4"] repl = ReplicationManager(DEFAULT_SUFFIX) fractional_server_to_replica(M1, M2) fractional_server_to_replica(M1, M3) fractional_server_to_replica(M1, M4) fractional_server_to_replica(M2, M1) fractional_server_to_replica(M2, M3) fractional_server_to_replica(M2, M4) fractional_server_to_replica(M3, M1) fractional_server_to_replica(M3, M2) fractional_server_to_replica(M3, M4) fractional_server_to_replica(M4, M1) fractional_server_to_replica(M4, M2) fractional_server_to_replica(M4, M3) # Step 2 - enable internal op logging and replication debug for i in (M1, M2, M3, M4): i.config.loglevel(vals=[256 + 4], service='access') i.config.loglevel(vals=[LOG_REPLICA, LOG_DEFAULT], service='error') # Step 3 - Check that replication is working fine add_user(M1, 11, desc="add to M1") add_user(M2, 21, desc="add to M2") add_user(M3, 31, desc="add to M3") add_user(M4, 41, desc="add to M4") for i in (M1, M2, M3, M4): for j in (M1, M2, M3, M4): if i == j: continue repl.wait_for_replication(i, j) # Step 4 - Generate skipped updates to create keep alive entries for i in (M1, M2, M3, M4): cn = '%s_%d' % (USER_CN, 11) dn = 'uid=%s,ou=People,%s' % (cn, SUFFIX) users = UserAccount(i, dn) for j in range(110): users.set('telephoneNumber', str(j)) # Step 5 - Remove M3 from the topology M3.stop() M1.agreement.delete(suffix=SUFFIX, consumer_host=M3.host, consumer_port=M3.port) M2.agreement.delete(suffix=SUFFIX, consumer_host=M3.host, consumer_port=M3.port) M4.agreement.delete(suffix=SUFFIX, consumer_host=M3.host, consumer_port=M3.port) # Step 6 - Then issue cleanAllRuv FORCE that will run on M1, M2 and M4 M1.tasks.cleanAllRUV(suffix=SUFFIX, replicaid='3', force=True, args={TASK_WAIT: True}) # Step 7 - Count the number of received DEL of the keep alive 3 for i in (M1, M2, M4): i.restart() regex = re.compile(".*DEL dn=.cn=repl keep alive 3.*") for i in (M1, M2, M4): count = count_pattern_accesslog(M1, regex) log.debug("count on %s = %d" % (i, count)) # check that DEL is replicated once (If DEL is kept in the fix) # check that DEL is is not replicated (If DEL is finally no long done in the fix) assert ((count == 1) or (count == 0)) # Step 8 - Check that M1 is Originator of cleanAllRuv and M2, M4 propagation regex = re.compile(".*Original task deletes Keep alive entry .3.*") assert pattern_errorlog(M1, regex) regex = re.compile(".*Propagated task does not delete Keep alive entry .3.*") assert pattern_errorlog(M2, regex) assert pattern_errorlog(M4, regex) # Step 9 - Check replication M1,M2 and M4 can recover add_user(M1, 12, desc="add to M1") add_user(M2, 22, desc="add to M2") for i in (M1, M2, M4): for j in (M1, M2, M4): if i == j: continue repl.wait_for_replication(i, j) # Step 10 - Remove M4 from the topology M4.stop() M1.agreement.delete(suffix=SUFFIX, consumer_host=M4.host, consumer_port=M4.port) M2.agreement.delete(suffix=SUFFIX, consumer_host=M4.host, consumer_port=M4.port) # Step 11 - Issue cleanAllRuv not force while M2 is stopped (that hangs the cleanAllRuv) M2.stop() M1.tasks.cleanAllRUV(suffix=SUFFIX, replicaid='4', force=False, args={TASK_WAIT: False}) # Step 12 # CleanAllRuv is hanging waiting for M2 to restart # Check that nsds5ReplicaCleanRUV is correctly encoded on M1 replicas = Replicas(M1) replica = replicas.list()[0] time.sleep(0.5) replica.present('nsds5ReplicaCleanRUV') log.info("M1: nsds5ReplicaCleanRUV=%s" % replica.get_attr_val_utf8('nsds5replicacleanruv')) regex = re.compile("^4:.*:no:1$") > assert regex.match(replica.get_attr_val_utf8('nsds5replicacleanruv')) E AssertionError: assert None E + where None = <built-in method match of re.Pattern object at 0x7f21f4589b90>('4:no:1:dc=example,dc=com') E + where <built-in method match of re.Pattern object at 0x7f21f4589b90> = re.compile('^4:.*:no:1$').match E + and '4:no:1:dc=example,dc=com' = <bound method DSLdapObject.get_attr_val_utf8 of <lib389.replica.Replica object at 0x7f21e522a2b0>>('nsds5replicacleanruv') E + where <bound method DSLdapObject.get_attr_val_utf8 of <lib389.replica.Replica object at 0x7f21e522a2b0>> = <lib389.replica.Replica object at 0x7f21e522a2b0>.get_attr_val_utf8 /export/tests/tickets/ticket49463_test.py:188: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 588724a9-d78c-429d-bc61-42da28dd2eae / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2f172f9c-dca1-4eeb-9891-7ad9bafde4f0 / got description=588724a9-d78c-429d-bc61-42da28dd2eae) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect d1f62c72-9ba9-424f-8d45-a7c73760aa0d / got description=2f172f9c-dca1-4eeb-9891-7ad9bafde4f0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 133c3920-0260-4bd5-a920-929cab6bfe95 / got description=d1f62c72-9ba9-424f-8d45-a7c73760aa0d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7eefc734-2270-490f-bf66-a7610632569d / got description=97dfff00-7364-4d3b-bc3a-edda013f5a5b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b27f6073-1517-42d2-94ae-88cef3cfcc9c / got description=7eefc734-2270-490f-bf66-a7610632569d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 3308d599-8362-42d8-8523-bb1e6c5222d7 / got description=b27f6073-1517-42d2-94ae-88cef3cfcc9c) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 3308d599-8362-42d8-8523-bb1e6c5222d7 / got description=b27f6073-1517-42d2-94ae-88cef3cfcc9c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect acd80e76-7e17-4b2b-b188-99e29031eac2 / got description=3308d599-8362-42d8-8523-bb1e6c5222d7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 363953fa-86ee-44fc-a0ee-5c8a049e26c3 / got description=acd80e76-7e17-4b2b-b188-99e29031eac2) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 363953fa-86ee-44fc-a0ee-5c8a049e26c3 / got description=acd80e76-7e17-4b2b-b188-99e29031eac2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 705f58d7-eb2f-4f1f-943c-555cbb2f7a3a / got description=363953fa-86ee-44fc-a0ee-5c8a049e26c3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 705f58d7-eb2f-4f1f-943c-555cbb2f7a3a / got description=363953fa-86ee-44fc-a0ee-5c8a049e26c3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect cbb2611e-7ed1-4e05-8239-e7a1b23cec5c / got description=705f58d7-eb2f-4f1f-943c-555cbb2f7a3a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e2171daa-00ce-467c-8385-537ac94c122c / got description=cbb2611e-7ed1-4e05-8239-e7a1b23cec5c) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e2171daa-00ce-467c-8385-537ac94c122c / got description=cbb2611e-7ed1-4e05-8239-e7a1b23cec5c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect bdb3c18c-e483-4519-944e-76b46ca93d45 / got description=e2171daa-00ce-467c-8385-537ac94c122c) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect bdb3c18c-e483-4519-944e-76b46ca93d45 / got description=e2171daa-00ce-467c-8385-537ac94c122c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect b3b2da7e-eac8-4bfe-87be-0920387148f7 / got description=bdb3c18c-e483-4519-944e-76b46ca93d45) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c6c47b34-bdde-45c2-9fd3-172517c50061 / got description=b3b2da7e-eac8-4bfe-87be-0920387148f7) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c6c47b34-bdde-45c2-9fd3-172517c50061 / got description=b3b2da7e-eac8-4bfe-87be-0920387148f7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6009a1fd-b441-44ad-827e-134571f2c6b3 / got description=c6c47b34-bdde-45c2-9fd3-172517c50061) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b56a6e9a-65f0-4b7c-83c2-6a738986e8f1 / got description=6009a1fd-b441-44ad-827e-134571f2c6b3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b56a6e9a-65f0-4b7c-83c2-6a738986e8f1 / got description=6009a1fd-b441-44ad-827e-134571f2c6b3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b56a6e9a-65f0-4b7c-83c2-6a738986e8f1 / got description=6009a1fd-b441-44ad-827e-134571f2c6b3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b56a6e9a-65f0-4b7c-83c2-6a738986e8f1 / got description=6009a1fd-b441-44ad-827e-134571f2c6b3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:tasks.py:1397 cleanAllRUV task (task-09292020_232500) completed successfully [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 83f8b7c3-ebd6-44e2-8260-c51ee6467cf9 / got description=b56a6e9a-65f0-4b7c-83c2-6a738986e8f1) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 83f8b7c3-ebd6-44e2-8260-c51ee6467cf9 / got description=b56a6e9a-65f0-4b7c-83c2-6a738986e8f1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 622a5b7b-8e9e-46e0-96a1-94d048a7ce22 / got description=83f8b7c3-ebd6-44e2-8260-c51ee6467cf9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 48de8aef-bfc2-4b2a-9a1e-7286c073c4c0 / got description=622a5b7b-8e9e-46e0-96a1-94d048a7ce22) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 48de8aef-bfc2-4b2a-9a1e-7286c073c4c0 / got description=622a5b7b-8e9e-46e0-96a1-94d048a7ce22) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 48de8aef-bfc2-4b2a-9a1e-7286c073c4c0 / got description=622a5b7b-8e9e-46e0-96a1-94d048a7ce22) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 03dcfa16-66d7-4e6f-8ecc-138236d9bda9 / got description=48de8aef-bfc2-4b2a-9a1e-7286c073c4c0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c73936bd-0c2e-4f3a-a97a-916921ec4d01 / got description=03dcfa16-66d7-4e6f-8ecc-138236d9bda9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1200ecf2-e05a-4e8c-ad73-a9935d26da8a / got description=c73936bd-0c2e-4f3a-a97a-916921ec4d01) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:tasks.py:1397 cleanAllRUV task (task-09292020_232549) completed successfully [32mINFO [0m lib389.utils:ticket49463_test.py:186 M1: nsds5ReplicaCleanRUV=4:no:1:dc=example,dc=com | |||
Failed | tickets/ticket50232_test.py::test_ticket50232_normal | 0.63 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e4b98b50> def test_ticket50232_normal(topology_st): """ The fix for ticket 50232 The test sequence is: - create suffix - add suffix entry and some child entries - "normally" done after populating suffix: enable replication - get RUV and database generation - export -r - import - get RUV and database generation - assert database generation has not changed """ log.info('Testing Ticket 50232 - export creates not imprtable ldif file, normal creation order') topology_st.standalone.backend.create(NORMAL_SUFFIX, {BACKEND_NAME: NORMAL_BACKEND_NAME}) topology_st.standalone.mappingtree.create(NORMAL_SUFFIX, bename=NORMAL_BACKEND_NAME, parent=None) _populate_suffix(topology_st.standalone, NORMAL_BACKEND_NAME) repl = ReplicationManager(DEFAULT_SUFFIX) > repl._ensure_changelog(topology_st.standalone) /export/tests/tickets/ticket50232_test.py:113: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/replica.py:1912: in _ensure_changelog cl.create(properties={ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e4b98670> func = <built-in method result4 of LDAP object at 0x7f21e4b9b5d0> args = (13, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 13, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=normal [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=normal,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=normal,cn=ldbm database,cn=plugins,cn=config cn: normal nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/normal nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=normal objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=normal",cn=mapping tree,cn=config cn: o=normal nsslapd-backend: normal nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dnormal,cn=mapping tree,cn=config cn: o=normal nsslapd-backend: normal nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree | |||
Failed | tickets/ticket50232_test.py::test_ticket50232_reverse | 0.08 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f21e4b98b50> def test_ticket50232_reverse(topology_st): """ The fix for ticket 50232 The test sequence is: - create suffix - enable replication before suffix enztry is added - add suffix entry and some child entries - get RUV and database generation - export -r - import - get RUV and database generation - assert database generation has not changed """ log.info('Testing Ticket 50232 - export creates not imprtable ldif file, normal creation order') # # Setup Replication # log.info('Setting up replication...') repl = ReplicationManager(DEFAULT_SUFFIX) # repl.create_first_master(topology_st.standalone) # # enable dynamic plugins, memberof and retro cl plugin # topology_st.standalone.backend.create(REVERSE_SUFFIX, {BACKEND_NAME: REVERSE_BACKEND_NAME}) topology_st.standalone.mappingtree.create(REVERSE_SUFFIX, bename=REVERSE_BACKEND_NAME, parent=None) > _enable_replica(topology_st.standalone, REVERSE_SUFFIX) /export/tests/tickets/ticket50232_test.py:155: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket50232_test.py:35: in _enable_replica repl._ensure_changelog(instance) /usr/local/lib/python3.8/site-packages/lib389/replica.py:1912: in _ensure_changelog cl.create(properties={ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21e4b98670> func = <built-in method result4 of LDAP object at 0x7f21e4b9b5d0> args = (22, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 22, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=reverse [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=reverse,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=reverse,cn=ldbm database,cn=plugins,cn=config cn: reverse nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/reverse nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=reverse objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=reverse",cn=mapping tree,cn=config cn: o=reverse nsslapd-backend: reverse nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dreverse,cn=mapping tree,cn=config cn: o=reverse nsslapd-backend: reverse nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree | |||
XFailed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_targattrfilters_18] | 0.02 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f8301f70> real_value = '(target = ldap:///cn=Jeff Vedder,ou=Product Development,dc=example,dc=com)(targetattr=*)(version 3.0; acl "Name of th...3123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123123";)' @pytest.mark.xfail(reason='https://bugzilla.redhat.com/show_bug.cgi?id=1691473') @pytest.mark.parametrize("real_value", [a[1] for a in FAILED], ids=[a[0] for a in FAILED]) def test_aci_invalid_syntax_fail(topo, real_value): """ Try to set wrong ACI syntax. :id: 83c40784-fff5-49c8-9535-7064c9c19e7e :parametrized: yes :setup: Standalone Instance :steps: 1. Create ACI 2. Try to setup the ACI with Instance :expectedresults: 1. It should pass 2. It should not pass """ domain = Domain(topo.standalone, DEFAULT_SUFFIX) with pytest.raises(ldap.INVALID_SYNTAX): > domain.add("aci", real_value) E Failed: DID NOT RAISE <class 'ldap.INVALID_SYNTAX'> suites/acl/syntax_test.py:215: Failed -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
XFailed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_targattrfilters_20] | 0.01 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f8301f70> real_value = '(target = ldap:///cn=Jeff Vedder,ou=Product Development,dc=example,dc=com)(targetattr=*)(version 3.0; acl "Name of the ACI"; deny(write)userdns="ldap:///anyone";)' @pytest.mark.xfail(reason='https://bugzilla.redhat.com/show_bug.cgi?id=1691473') @pytest.mark.parametrize("real_value", [a[1] for a in FAILED], ids=[a[0] for a in FAILED]) def test_aci_invalid_syntax_fail(topo, real_value): """ Try to set wrong ACI syntax. :id: 83c40784-fff5-49c8-9535-7064c9c19e7e :parametrized: yes :setup: Standalone Instance :steps: 1. Create ACI 2. Try to setup the ACI with Instance :expectedresults: 1. It should pass 2. It should not pass """ domain = Domain(topo.standalone, DEFAULT_SUFFIX) with pytest.raises(ldap.INVALID_SYNTAX): > domain.add("aci", real_value) E Failed: DID NOT RAISE <class 'ldap.INVALID_SYNTAX'> suites/acl/syntax_test.py:215: Failed | |||
XFailed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_bind_rule_set_with_more_than_three] | 0.15 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f8301f70> real_value = '(target = ldap:///dc=example,dc=com)(targetattr=*)(version 3.0; acl "Name of the ACI"; deny absolute (all)userdn="ldap:////////anyone";)' @pytest.mark.xfail(reason='https://bugzilla.redhat.com/show_bug.cgi?id=1691473') @pytest.mark.parametrize("real_value", [a[1] for a in FAILED], ids=[a[0] for a in FAILED]) def test_aci_invalid_syntax_fail(topo, real_value): """ Try to set wrong ACI syntax. :id: 83c40784-fff5-49c8-9535-7064c9c19e7e :parametrized: yes :setup: Standalone Instance :steps: 1. Create ACI 2. Try to setup the ACI with Instance :expectedresults: 1. It should pass 2. It should not pass """ domain = Domain(topo.standalone, DEFAULT_SUFFIX) with pytest.raises(ldap.INVALID_SYNTAX): > domain.add("aci", real_value) E Failed: DID NOT RAISE <class 'ldap.INVALID_SYNTAX'> suites/acl/syntax_test.py:215: Failed | |||
XFailed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_3, CHILDREN)] | 0.07 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f9697640> _add_user = None, user = 'uid=Grandparent,ou=Inheritance,dc=example,dc=com' entry = 'ou=CHILDREN,ou=PARENTS,ou=GRANDPARENTS,ou=ANCESTORS,ou=Inheritance,dc=example,dc=com' @pytest.mark.parametrize("user,entry", [ (CAN, ROLEDNACCESS), (CAN, USERDNACCESS), (CAN, GROUPDNACCESS), (CAN, LDAPURLACCESS), (CAN, ATTRNAMEACCESS), (LEVEL_0, OU_2), (LEVEL_1, ANCESTORS), (LEVEL_2, GRANDPARENTS), (LEVEL_4, OU_2), (LEVEL_4, ANCESTORS), (LEVEL_4, GRANDPARENTS), (LEVEL_4, PARENTS), (LEVEL_4, CHILDREN), pytest.param(LEVEL_3, CHILDREN, marks=pytest.mark.xfail(reason="May be some bug")), ], ids=[ "(CAN,ROLEDNACCESS)", "(CAN,USERDNACCESS)", "(CAN,GROUPDNACCESS)", "(CAN,LDAPURLACCESS)", "(CAN,ATTRNAMEACCESS)", "(LEVEL_0, OU_2)", "(LEVEL_1,ANCESTORS)", "(LEVEL_2,GRANDPARENTS)", "(LEVEL_4,OU_2)", "(LEVEL_4, ANCESTORS)", "(LEVEL_4,GRANDPARENTS)", "(LEVEL_4,PARENTS)", "(LEVEL_4,CHILDREN)", "(LEVEL_3, CHILDREN)" ]) def test_mod_see_also_positive(topo, _add_user, user, entry): """ Try to set seeAlso on entry with binding specific user, it will success as per the ACI. :id: 65745426-7a01-11e8-8ac2-8c16451d917b :parametrized: yes :setup: Standalone Instance :steps: 1. Add test entry 2. Add ACI 3. User should follow ACI role :expectedresults: 1. Entry should be added 2. Operation should succeed 3. Operation should succeed """ conn = UserAccount(topo.standalone, user).bind(PW_DM) > UserAccount(conn, entry).replace('seeAlso', 'cn=1') suites/acl/userattr_test.py:216: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:280: in replace self.set(key, value, action=ldap.MOD_REPLACE) /usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set return self._instance.modify_ext_s(self._dn, [(action, key, value)], /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3 resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f21f7e8ee20> func = <built-in method result4 of LDAP object at 0x7f21f7e83e70> args = (5, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.INSUFFICIENT_ACCESS: {'msgtype': 103, 'msgid': 5, 'result': 50, 'desc': 'Insufficient access', 'ctrls': [], 'info': "Insufficient 'write' privilege to the 'seeAlso' attribute of entry 'ou=children,ou=parents,ou=grandparents,ou=ancestors,ou=inheritance,dc=example,dc=com'.\n"} /usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: INSUFFICIENT_ACCESS | |||
XFailed | suites/config/config_test.py::test_defaultnamingcontext_1 | 0.48 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f7d5cb80> @pytest.mark.xfail(reason="This may fail due to bug 1610234") def test_defaultnamingcontext_1(topo): """This test case should be part of function test_defaultnamingcontext Please move it back after we have a fix for bug 1610234 """ log.info("Remove the original suffix which is currently nsslapd-defaultnamingcontext" "and check nsslapd-defaultnamingcontext become empty.") """ Please remove these declarations after moving the test to function test_defaultnamingcontext """ backends = Backends(topo.standalone) test_db2 = 'test2_db' test_suffix2 = 'dc=test2,dc=com' b2 = backends.create(properties={'cn': test_db2, 'nsslapd-suffix': test_suffix2}) b2.delete() > assert topo.standalone.config.get_attr_val_utf8('nsslapd-defaultnamingcontext') == ' ' E AssertionError: assert 'dc=example,dc=com' == ' ' E Strings contain only whitespace, escaping them using repr() E - ' ' E + 'dc=example,dc=com' suites/config/config_test.py:280: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:268 Remove the original suffix which is currently nsslapd-defaultnamingcontextand check nsslapd-defaultnamingcontext become empty. | |||
XFailed | suites/export/export_test.py::test_dbtasks_db2ldif_with_non_accessible_ldif_file_path_output | 3.55 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7f34a90> @pytest.mark.bz1860291 @pytest.mark.xfail(reason="bug 1860291") @pytest.mark.skipif(ds_is_older("1.3.10", "1.4.2"), reason="Not implemented") def test_dbtasks_db2ldif_with_non_accessible_ldif_file_path_output(topo): """Export with db2ldif, giving a ldif file path which can't be accessed by the user (dirsrv by default) :id: fcc63387-e650-40a7-b643-baa68c190037 :setup: Standalone Instance - entries imported in the db :steps: 1. Stop the server 2. Launch db2ldif with a non accessible ldif file path 3. check the error reported in the command output :expected results: 1. Operation successful 2. Operation properly fails 3. An clear error message is reported as output of the cli """ export_ldif = '/tmp/nonexistent/export.ldif' log.info("Stopping the instance...") topo.standalone.stop() log.info("Performing an offline export to a non accessible ldif file path - should fail and output a clear error message") expected_output="No such file or directory" > run_db2ldif_and_clear_logs(topo, topo.standalone, DEFAULT_BENAME, export_ldif, expected_output) suites/export/export_test.py:150: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology = <lib389.topologies.TopologyMain object at 0x7f21e7f34a90> instance = <lib389.DirSrv object at 0x7f21e7f34a30>, backend = 'userRoot' ldif = '/tmp/nonexistent/export.ldif', output_msg = 'No such file or directory' encrypt = False, repl = False def run_db2ldif_and_clear_logs(topology, instance, backend, ldif, output_msg, encrypt=False, repl=False): args = FakeArgs() args.instance = instance.serverid args.backend = backend args.encrypted = encrypt args.replication = repl args.ldif = ldif dbtasks_db2ldif(instance, topology.logcap.log, args) log.info('checking output msg') if not topology.logcap.contains(output_msg): log.error('The output message is not the expected one') > assert False E assert False suites/export/export_test.py:36: AssertionError ------------------------------Captured stderr call------------------------------ ldiffile: /tmp/nonexistent/export.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:export_test.py:145 Stopping the instance... [32mINFO [0m lib389.utils:export_test.py:148 Performing an offline export to a non accessible ldif file path - should fail and output a clear error message [31mCRITICAL[0m LogCapture:dbtasks.py:40 db2ldif failed [32mINFO [0m lib389.utils:export_test.py:33 checking output msg [1m[31mERROR [0m lib389.utils:export_test.py:35 The output message is not the expected one | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_memberof_groups | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f21e7ba4070> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e7bb59a0> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f21e7b9ed60> def test_memberof_groups(self, topology_m2, base_m2): """Check that conflict properly resolved for operations with memberOf and groups :id: 77f09b18-03d1-45da-940b-1ad2c2908eb3 :setup: Two master replication, test container for entries, enable plugin logging, audit log, error log for replica and access log for internal :steps: 1. Enable memberOf plugin 2. Add 30 users to m1 and wait for replication to happen 3. Pause replication 4. Create a group on m1 and m2 5. Create a group on m1 and m2, delete from m1 6. Create a group on m1, delete from m1, and create on m2, 7. Create a group on m2 and m1, delete from m1 8. Create two different groups on m2 9. Resume replication 10. Check that the entries on both masters are the same and replication is working :expectedresults: 1. It should pass 2. It should pass 3. It should pass 4. It should pass 5. It should pass 6. It should pass 7. It should pass 8. It should pass 9. It should pass 10. It should pass """ > pytest.xfail("Issue 49591 - work in progress") E _pytest.outcomes.XFailed: Issue 49591 - work in progress suites/replication/conflict_resolve_test.py:402: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_managed_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f21e7ba5340> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e7bb59a0> def test_managed_entries(self, topology_m2): """Check that conflict properly resolved for operations with managed entries :id: 77f09b18-03d1-45da-940b-1ad2c2908eb4 :setup: Two master replication, test container for entries, enable plugin logging, audit log, error log for replica and access log for internal :steps: 1. Create ou=managed_users and ou=managed_groups under test container 2. Configure managed entries plugin and add a template to test container 3. Add a user to m1 and wait for replication to happen 4. Pause replication 5. Create a user on m1 and m2 with a same group ID on both master 6. Create a user on m1 and m2 with a different group ID on both master 7. Resume replication 8. Check that the entries on both masters are the same and replication is working :expectedresults: 1. It should pass 2. It should pass 3. It should pass 4. It should pass 5. It should pass 6. It should pass 7. It should pass 8. It should pass """ > pytest.xfail("Issue 49591 - work in progress") E _pytest.outcomes.XFailed: Issue 49591 - work in progress suites/replication/conflict_resolve_test.py:493: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_nested_entries_with_children | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f21e786cee0> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f21e7bb59a0> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f21e769e100> def test_nested_entries_with_children(self, topology_m2, base_m2): """Check that conflict properly resolved for operations with nested entries with children :id: 77f09b18-03d1-45da-940b-1ad2c2908eb5 :setup: Two master replication, test container for entries, enable plugin logging, audit log, error log for replica and access log for internal :steps: 1. Add 15 containers to m1 and wait for replication to happen 2. Pause replication 3. Create parent-child on master2 and master1 4. Create parent-child on master1 and master2 5. Create parent-child on master1 and master2 different child rdn 6. Create parent-child on master1 and delete parent on master2 7. Create parent on master1, delete it and parent-child on master2, delete them 8. Create parent on master1, delete it and parent-two children on master2 9. Create parent-two children on master1 and parent-child on master2, delete them 10. Create three subsets inside existing container entry, applying only part of changes on m2 11. Create more combinations of the subset with parent-child on m1 and parent on m2 12. Delete container on m1, modify user1 on m1, create parent on m2 and modify user2 on m2 13. Resume replication 14. Check that the entries on both masters are the same and replication is working :expectedresults: 1. It should pass 2. It should pass 3. It should pass 4. It should pass 5. It should pass 6. It should pass 7. It should pass 8. It should pass 9. It should pass 10. It should pass 11. It should pass 12. It should pass 13. It should pass 14. It should pass """ > pytest.xfail("Issue 49591 - work in progress") E _pytest.outcomes.XFailed: Issue 49591 - work in progress suites/replication/conflict_resolve_test.py:584: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestThreeMasters::test_nested_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestThreeMasters object at 0x7f21f4864580> topology_m3 = <lib389.topologies.TopologyMain object at 0x7f21f4864160> base_m3 = <lib389.idm.nscontainer.nsContainer object at 0x7f21f47cdb80> def test_nested_entries(self, topology_m3, base_m3): """Check that conflict properly resolved for operations with nested entries with children :id: 77f09b18-03d1-45da-940b-1ad2c2908eb6 :setup: Three master replication, test container for entries, enable plugin logging, audit log, error log for replica and access log for internal :steps: 1. Add 15 containers to m1 and wait for replication to happen 2. Pause replication 3. Create two child entries under each of two entries 4. Create three child entries under each of three entries 5. Create two parents on m1 and m2, then on m1 - create a child and delete one parent, on m2 - delete one parent and create a child 6. Test a few more parent-child combinations with three instances 7. Resume replication 8. Check that the entries on both masters are the same and replication is working :expectedresults: 1. It should pass 2. It should pass 3. It should pass 4. It should pass 5. It should pass 6. It should pass 7. It should pass 8. It should pass """ > pytest.xfail("Issue 49591 - work in progress") E _pytest.outcomes.XFailed: Issue 49591 - work in progress suites/replication/conflict_resolve_test.py:968: XFailed -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c234a18c-b781-4e72-8015-7e548d66be8f / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 996f17d8-32fc-4f43-a6e7-c5b1c4182041 / got description=c234a18c-b781-4e72-8015-7e548d66be8f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4f0ff51c-5211-4ec5-bd52-d1f17537257d / got description=996f17d8-32fc-4f43-a6e7-c5b1c4182041) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5294be3f-344d-454d-b36f-bf7438ef0def / got description=4f0ff51c-5211-4ec5-bd52-d1f17537257d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaPort-0-65535-9999999999999999999999999999999999999999999999999999999999999999999-invalid-389] | 0.06 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaPort', too_small = '0', too_big = '65535' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '389' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_add(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf94 :parametrized: yes :setup: standalone instance :steps: 1. Use a value that is too small 2. Use a value that is too big 3. Use a value that overflows the int 4. Use a value with character value (not a number) 5. Use a valid value :expectedresults: 1. Add is rejected 2. Add is rejected 3. Add is rejected 4. Add is rejected 5. Add is allowed """ agmt_reset(topo) replica = replica_setup(topo) agmts = Agreements(topo.standalone, basedn=replica.dn) # Test too small perform_invalid_create(agmts, agmt_dict, attr, too_small) # Test too big > perform_invalid_create(agmts, agmt_dict, attr, too_big) suites/replication/replica_config_test.py:217: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ many = <lib389.agreement.Agreements object at 0x7f21e7b93ee0> properties = {'cn': 'test_agreement', 'nsDS5ReplicaBindDN': 'uid=tester', 'nsDS5ReplicaBindMethod': 'SIMPLE', 'nsDS5ReplicaHost': 'localhost.localdomain', ...} attr = 'nsds5ReplicaPort', value = '65535' def perform_invalid_create(many, properties, attr, value): my_properties = copy.deepcopy(properties) my_properties[attr] = value with pytest.raises(ldap.LDAPError) as ei: > many.create(properties=my_properties) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:108: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaPort-0-65535-9999999999999999999999999999999999999999999999999999999999999999999-invalid-389] | 0.17 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaPort', too_small = '0', too_big = '65535' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '389' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small > perform_invalid_modify(agmt, attr, too_small) suites/replication/replica_config_test.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e74ca130> attr = 'nsds5ReplicaPort', value = '0' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.19 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaTimeout', too_small = '-1', too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e7848cd0> attr = 'nsds5ReplicaTimeout', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.18 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaBusyWaitTime', too_small = '-1' too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e74e2970> attr = 'nsds5ReplicaBusyWaitTime', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.17 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaSessionPauseTime', too_small = '-1' too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e74e6670> attr = 'nsds5ReplicaSessionPauseTime', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.17 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaFlowControlWindow', too_small = '-1' too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e74c53d0> attr = 'nsds5ReplicaFlowControlWindow', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.31 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaFlowControlPause', too_small = '-1' too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e786f610> attr = 'nsds5ReplicaFlowControlPause', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.20 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21e7bb8b20> attr = 'nsds5ReplicaProtocolTimeout', too_small = '-1' too_big = '9223372036854775807' overflow = '9999999999999999999999999999999999999999999999999999999999999999999' notnum = 'invalid', valid = '6' @pytest.mark.xfail(reason="Agreement validation current does not work.") @pytest.mark.parametrize("attr, too_small, too_big, overflow, notnum, valid", agmt_attrs) def test_agmt_num_modify(topo, attr, too_small, too_big, overflow, notnum, valid): """Test all the number values you can set for a replica config entry :id: a8b47d4a-a089-4d70-8070-e6181209bf95 :parametrized: yes :setup: standalone instance :steps: 1. Replace a value that is too small 2. Replace a value that is too big 3. Replace a value that overflows the int 4. Replace a value with character value (not a number) 5. Replace a vlue with a valid value :expectedresults: 1. Value is rejected 2. Value is rejected 3. Value is rejected 4. Value is rejected 5. Value is allowed """ agmt = agmt_setup(topo) # Value too small perform_invalid_modify(agmt, attr, too_small) # Value too big > perform_invalid_modify(agmt, attr, too_big) suites/replication/replica_config_test.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f21e7867820> attr = 'nsds5ReplicaProtocolTimeout', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError) as ei: > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:113: Failed | |||
XFailed | suites/replication/ruvstore_test.py::test_memoryruv_sync_with_databaseruv | 0.05 | |
topo = <lib389.topologies.TopologyMain object at 0x7f21f8d306d0> @pytest.mark.xfail(reason="No method to safety access DB ruv currently exists online.") def test_memoryruv_sync_with_databaseruv(topo): """Check if memory ruv and database ruv are synced :id: 5f38ac5f-6353-460d-bf60-49cafffda5b3 :setup: Replication with two masters. :steps: 1. Add user to server and compare memory ruv and database ruv. 2. Modify description of user and compare memory ruv and database ruv. 3. Modrdn of user and compare memory ruv and database ruv. 4. Delete user and compare memory ruv and database ruv. :expectedresults: 1. For add user, the memory ruv and database ruv should be the same. 2. For modify operation, the memory ruv and database ruv should be the same. 3. For modrdn operation, the memory ruv and database ruv should be the same. 4. For delete operation, the memory ruv and database ruv should be the same. """ log.info('Adding user: {} to master1'.format(TEST_ENTRY_NAME)) users = UserAccounts(topo.ms['master1'], DEFAULT_SUFFIX) tuser = users.create(properties=USER_PROPERTIES) > _compare_memoryruv_and_databaseruv(topo, 'add') suites/replication/ruvstore_test.py:139: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topo = <lib389.topologies.TopologyMain object at 0x7f21f8d306d0> operation_type = 'add' def _compare_memoryruv_and_databaseruv(topo, operation_type): """Compare the memoryruv and databaseruv for ldap operations""" log.info('Checking memory ruv for ldap: {} operation'.format(operation_type)) replicas = Replicas(topo.ms['master1']) replica = replicas.list()[0] memory_ruv = replica.get_attr_val_utf8('nsds50ruv') log.info('Checking database ruv for ldap: {} operation'.format(operation_type)) > entry = replicas.get_ruv_entry(DEFAULT_SUFFIX) E AttributeError: 'Replicas' object has no attribute 'get_ruv_entry' suites/replication/ruvstore_test.py:81: AttributeError -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:136 Adding user: rep2lusr to master1 [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:75 Checking memory ruv for ldap: add operation [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:80 Checking database ruv for ldap: add operation | |||
XPassed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetattr] | 0.04 | |
No log output captured. | |||
XPassed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetfilter] | 0.03 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.21 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.26 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.32 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.29 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.22 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.21 | |
No log output captured. | |||
Skipped | suites/auth_token/basic_auth_test.py::test_ldap_auth_token_config::setup | 0.00 | |
('suites/auth_token/basic_auth_test.py', 28, 'Skipped: Auth tokens are not available in older versions') | |||
Skipped | suites/auth_token/basic_auth_test.py::test_ldap_auth_token_nsuser::setup | 0.00 | |
('suites/auth_token/basic_auth_test.py', 75, 'Skipped: Auth tokens are not available in older versions') | |||
Skipped | suites/auth_token/basic_auth_test.py::test_ldap_auth_token_disabled::setup | 0.00 | |
('suites/auth_token/basic_auth_test.py', 144, 'Skipped: Auth tokens are not available in older versions') | |||
Skipped | suites/auth_token/basic_auth_test.py::test_ldap_auth_token_directory_manager::setup | 0.00 | |
('suites/auth_token/basic_auth_test.py', 194, 'Skipped: Auth tokens are not available in older versions') | |||
Skipped | suites/auth_token/basic_auth_test.py::test_ldap_auth_token_anonymous::setup | 0.00 | |
('suites/auth_token/basic_auth_test.py', 217, 'Skipped: Auth tokens are not available in older versions') | |||
Skipped | suites/config/regression_test.py::test_set_cachememsize_to_custom_value::setup | 0.00 | |
('suites/config/regression_test.py', 34, 'Skipped: available memory is too low') | |||
Skipped | suites/entryuuid/basic_test.py::test_entryuuid_indexed_import_and_search::setup | 0.00 | |
('suites/entryuuid/basic_test.py', 73, 'Skipped: Entryuuid is not available in older versions') | |||
Skipped | suites/entryuuid/basic_test.py::test_entryuuid_unindexed_import_and_search::setup | 0.00 | |
('suites/entryuuid/basic_test.py', 113, 'Skipped: Entryuuid is not available in older versions') | |||
Skipped | suites/entryuuid/basic_test.py::test_entryuuid_generation_on_add::setup | 0.00 | |
('suites/entryuuid/basic_test.py', 155, 'Skipped: Entryuuid is not available in older versions') | |||
Skipped | suites/entryuuid/basic_test.py::test_entryuuid_fixup_task::setup | 0.00 | |
('suites/entryuuid/basic_test.py', 179, 'Skipped: Entryuuid is not available in older versions') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_logging_format_should_be_revised::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 91, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_RI_plugin_is_misconfigured::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 134, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_RI_plugin_missing_indexes::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 183, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_virtual_attr_incorrectly_indexed::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 235, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_low_disk_space::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 295, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_notes_unindexed_search::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 340, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_config_test.py::test_healthcheck_notes_unknown_attribute::setup | 0.00 | |
('suites/healthcheck/health_config_test.py', 389, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_repl_test.py::test_healthcheck_replication_replica_not_reachable::setup | 0.00 | |
('suites/healthcheck/health_repl_test.py', 80, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_repl_test.py::test_healthcheck_changelog_trimming_not_configured::setup | 0.00 | |
('suites/healthcheck/health_repl_test.py', 132, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_repl_test.py::test_healthcheck_replication_presence_of_conflict_entries::setup | 0.00 | |
('suites/healthcheck/health_repl_test.py', 179, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_repl_test.py::test_healthcheck_replication_out_of_sync_broken::setup | 0.00 | |
('suites/healthcheck/health_repl_test.py', 224, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_insecure_pwd_hash_configured::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 86, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_min_allowed_tls_version_too_low::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 135, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_resolvconf_bad_file_perm::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 194, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_pwdfile_bad_file_perm::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 237, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_certif_expiring_within_30d::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 281, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_security_test.py::test_healthcheck_certif_expired::setup | 0.00 | |
('suites/healthcheck/health_security_test.py', 319, 'Skipped: These tests can only be run with python installer and disabled ASAN') | |||
Skipped | suites/healthcheck/health_sync_test.py::test_healthcheck_replication_out_of_sync_not_broken::setup | 0.00 | |
('suites/healthcheck/health_sync_test.py', 70, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_standalone::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 74, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_list_checks::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 98, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_list_errors::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 138, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_check_option::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 187, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_standalone_tls::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 232, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_replication::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 259, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_replication_tls::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 295, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_backend_missing_mapping_tree::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 332, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_unable_to_query_backend::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 383, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/healthcheck/healthcheck_test.py::test_healthcheck_database_not_initialized::setup | 0.00 | |
('suites/healthcheck/healthcheck_test.py', 433, 'Skipped: These tests need to use python installer') | |||
Skipped | suites/memory_leaks/MMR_double_free_test.py::test_MMR_double_free::setup | 0.00 | |
('suites/memory_leaks/MMR_double_free_test.py', 67, "Skipped: Don't run if ASAN is not enabled") | |||
Skipped | suites/memory_leaks/range_search_test.py::test_range_search::setup | 0.00 | |
('suites/memory_leaks/range_search_test.py', 24, "Skipped: Don't run if ASAN is not enabled") | |||
Skipped | suites/migration/export_data_test.py::test_export_data_from_source_host::setup | 0.00 | |
('suites/migration/export_data_test.py', 24, 'Skipped: This test is meant to execute in specific test environment') | |||
Skipped | suites/migration/import_data_test.py::test_import_data_to_target_host::setup | 0.00 | |
('suites/migration/import_data_test.py', 24, 'Skipped: This test is meant to execute in specific test environment') | |||
Skipped | suites/replication/changelog_test.py::test_cldump_files_removed::setup | 0.00 | |
('suites/replication/changelog_test.py', 235, 'Skipped: does not work for prefix builds') | |||
Skipped | suites/replication/changelog_test.py::test_changelog_compactdbinterval::setup | 0.00 | |
('suites/replication/changelog_test.py', 628, 'Skipped: changelog compaction is done by the backend itself, with id2entry as well, nsslapd-changelogcompactdb-interval is no longer supported') | |||
Skipped | suites/rewriters/adfilter_test.py::test_adfilter_objectSid::setup | 0.00 | |
('suites/rewriters/adfilter_test.py', 90, 'Skipped: It is missing samba python bindings') | |||
Skipped | tickets/ticket47462_test.py::test_ticket47462::setup | 0.00 | |
('tickets/ticket47462_test.py', 39, 'Skipped: Upgrade scripts are supported only on versions < 1.4.x') | |||
Skipped | tickets/ticket47815_test.py::test_ticket47815::setup | 0.00 | |
('tickets/ticket47815_test.py', 26, 'Skipped: Not implemented, or invalid by nsMemberOf') | |||
Skipped | tickets/ticket49121_test.py::test_ticket49121::setup | 0.00 | |
('tickets/ticket49121_test.py', 32, "Skipped: Don't run if ASAN is not enabled") | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_EQ_ACI)] | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_PRES_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_SUB_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, ROLE_PRES_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, ROLE_SUB_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_EQ_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_PRES_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_SUB_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, LDAPURL_ACI)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, REAL_EQ_ACI)] | 0.07 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_OU, REAL_PRES_ACI)] | 0.07 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, REAL_SUB_ACI)] | 0.08 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_EQ_ACI)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_PRES_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_SUB_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_EQ_ACI)] | 0.07 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_PRES_ACI)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_SUB_ACI)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(SALES_UESER, SALES_MANAGER, LDAPURL_ACI)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, ENG_MANAGER, ROLE_EQ_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acl_deny_test.py::test_multi_deny_aci | 14.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389:acl_deny_test.py:39 Add uid=tuser1,ou=People,dc=example,dc=com [32mINFO [0m lib389:acl_deny_test.py:50 Add uid=tuser,ou=People,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_deny_test.py:82 Pass 1 [32mINFO [0m lib389:acl_deny_test.py:85 Testing two searches behave the same... [32mINFO [0m lib389:acl_deny_test.py:128 Testing search does not return any entries... [32mINFO [0m lib389:acl_deny_test.py:82 Pass 2 [32mINFO [0m lib389:acl_deny_test.py:85 Testing two searches behave the same... [32mINFO [0m lib389:acl_deny_test.py:128 Testing search does not return any entries... [32mINFO [0m lib389:acl_deny_test.py:192 Test PASSED | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[lang-ja] | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 52d12225-51da-470c-8441-4fa45f152c02 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect cf0e77ad-a2ef-4c20-a6d7-801b8738c725 / got description=52d12225-51da-470c-8441-4fa45f152c02) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'lang-ja' subtype======== [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:126 The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[binary] | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'binary' subtype======== [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:126 The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[phonetic] | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'phonetic' subtype======== [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute [32mINFO [0m tests.suites.acl.acl_test:acl_test.py:126 The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_mode_default_add_deny | 0.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:acl_test.py:234 ######## INITIALIZATION ######## [32mINFO [0m lib389:acl_test.py:237 Add uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:247 Add cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:251 Add cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:255 Add cn=excepts,cn=accounts,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:287 ######## mode moddn_aci : ADD (should fail) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:295 Try to add cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:304 Exception (expected): INSUFFICIENT_ACCESS | |||
Passed | suites/acl/acl_test.py::test_mode_default_delete_deny | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:322 ######## DELETE (should fail) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:329 Try to delete cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:334 Exception (expected): INSUFFICIENT_ACCESS | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[0-cn=staged user,dc=example,dc=com-cn=accounts,dc=example,dc=com-False] | 0.38 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (0) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account0,cn=staged user,dc=example,dc=com -> uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account0,cn=staged user,dc=example,dc=com -> uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[1-cn=staged user,dc=example,dc=com-cn=accounts,dc=example,dc=com-False] | 0.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (1) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account1,cn=staged user,dc=example,dc=com -> uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account1,cn=staged user,dc=example,dc=com -> uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[2-cn=staged user,dc=example,dc=com-cn=bad*,dc=example,dc=com-True] | 0.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (2) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account2,cn=staged user,dc=example,dc=com -> uid=new_account2,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account2,cn=staged user,dc=example,dc=com -> uid=new_account2,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:402 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[3-cn=st*,dc=example,dc=com-cn=accounts,dc=example,dc=com-False] | 0.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (3) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account3,cn=staged user,dc=example,dc=com -> uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account3,cn=staged user,dc=example,dc=com -> uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[4-cn=bad*,dc=example,dc=com-cn=accounts,dc=example,dc=com-True] | 0.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (4) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account4,cn=staged user,dc=example,dc=com -> uid=new_account4,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account4,cn=staged user,dc=example,dc=com -> uid=new_account4,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:402 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[5-cn=st*,dc=example,dc=com-cn=ac*,dc=example,dc=com-False] | 0.35 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (5) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account5,cn=staged user,dc=example,dc=com -> uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account5,cn=staged user,dc=example,dc=com -> uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[6-None-cn=ac*,dc=example,dc=com-False] | 0.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (6) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account6,cn=staged user,dc=example,dc=com -> uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account6,cn=staged user,dc=example,dc=com -> uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[7-cn=st*,dc=example,dc=com-None-False] | 0.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (7) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account7,cn=staged user,dc=example,dc=com -> uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account7,cn=staged user,dc=example,dc=com -> uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[8-None-None-False] | 0.35 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:369 ######## MOVE staging -> Prod (8) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:381 Try to MODDN uid=new_account8,cn=staged user,dc=example,dc=com -> uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:399 Try to MODDN uid=new_account8,cn=staged user,dc=example,dc=com -> uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod_9 | 1.50 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:446 ######## MOVE staging -> Prod (9) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:459 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:466 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:472 Disable the moddn right [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:477 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:485 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:492 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:514 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:525 Enable the moddn right [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:529 ######## MOVE staging -> Prod (10) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:541 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:548 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:565 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:572 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:581 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:587 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_prod_staging | 0.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:616 ######## MOVE staging -> Prod (11) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:629 Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:636 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:640 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:646 Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:661 Try to move back MODDN uid=new_account11,cn=accounts,dc=example,dc=com -> uid=new_account11,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:668 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_check_repl_M2_to_M1 | 1.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:698 Bind as cn=Directory Manager (M2) [32mINFO [0m lib389:acl_test.py:718 Update (M2) uid=new_account12,cn=staged user,dc=example,dc=com (description) [32mINFO [0m lib389:acl_test.py:731 Update uid=new_account12,cn=staged user,dc=example,dc=com (description) replicated on M1 | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod_except | 0.39 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:756 ######## MOVE staging -> Prod (13) ######## [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:768 Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:775 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:779 ######## MOVE to and from equality filter ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:161 Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:786 Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:792 ######## MOVE staging -> Prod/Except (14) ######## [32mINFO [0m lib389:acl_test.py:798 Try to MODDN uid=new_account14,cn=staged user,dc=example,dc=com -> uid=new_account14,cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:805 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:161 Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_mode_default_ger_no_moddn | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:832 ######## mode moddn_aci : GER no moddn ######## [32mINFO [0m lib389:acl_test.py:843 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:843 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:846 ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_mode_default_ger_with_moddn | 0.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:870 ######## mode moddn_aci: GER with moddn ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:888 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:891 ######## entryLevelRights: b'vn' [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_no_moddn1 | 0.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:921 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:925 ######## mode legacy 1: GER no moddn ######## [32mINFO [0m lib389:acl_test.py:935 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:935 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:938 ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_no_moddn2 | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:964 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:968 ######## mode legacy 2: GER no moddn ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:985 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:988 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_with_moddn | 0.51 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1024 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:1028 ######## mode legacy : GER with moddn ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1050 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1053 ######## entryLevelRights: b'vn' [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager | |||
Passed | suites/acl/acl_test.py::test_rdn_write_get_ger | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:acl_test.py:1064 ######## Add entry tuser ######## -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1088 ######## GER rights for anonymous ######## [32mINFO [0m lib389:acl_test.py:1098 dn: dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=Directory Administrators,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: ou=People,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: ou=Special Users,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=HR Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=QA Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=PD Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=replication_managers,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account2,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account4,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account12,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account14,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account15,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account16,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account17,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account18,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: uid=new_account19,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1098 dn: cn=tuser,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1100 ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_rdn_write_modrdn_anonymous | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1127 dn: [32mINFO [0m lib389:acl_test.py:1129 ######## 'objectClass': [b'top'] [32mINFO [0m lib389:acl_test.py:1129 ######## 'defaultnamingcontext': [b'dc=example,dc=com'] [32mINFO [0m lib389:acl_test.py:1129 ######## 'dataversion': [b'020200929232235'] [32mINFO [0m lib389:acl_test.py:1129 ######## 'netscapemdsuffix': [b'cn=ldap://dc=ci-vm-10-0-139-159,dc=hosted,dc=upshift,dc=rdu2,dc=redhat,dc=com:39001'] [32mINFO [0m lib389:acl_test.py:1134 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:1141 The entry was not renamed (expected) [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_groupdn | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/deladd_test.py::test_allow_add_access_to_anyone | 0.07 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_anyone | 0.06 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_userdn | 0.07 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_group | 0.09 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_add_access_to_parent | 0.07 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_parent | 0.06 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_dynamic_group | 0.06 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_dynamic_group_uid | 0.05 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_dynamic_group | 0.08 | |
No log output captured. | |||
Passed | suites/acl/enhanced_aci_modrnd_test.py::test_enhanced_aci_modrnd | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:32 Add a container: ou=test_ou_1,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:39 Add a container: ou=test_ou_2,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:46 Add a user: cn=test_user,ou=test_ou_1,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:60 Add an ACI 'allow (all)' by cn=test_user,ou=test_ou_1,dc=example,dc=com to the ou=test_ou_1,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:64 Add an ACI 'allow (all)' by cn=test_user,ou=test_ou_1,dc=example,dc=com to the ou=test_ou_2,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:95 Bind as cn=test_user,ou=test_ou_1,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:99 User MODRDN operation from ou=test_ou_1,dc=example,dc=com to ou=test_ou_2,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:105 Check there is no user in ou=test_ou_1,dc=example,dc=com [32mINFO [0m tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:111 Check there is our user in ou=test_ou_2,dc=example,dc=com | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_five | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_six | 0.06 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_seven | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eight | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_nine | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_ten | 0.05 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eleven | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_twelve | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_fourteen | 0.06 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_fifteen | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_sixteen | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_seventeen | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eighteen | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_caching_changes | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/globalgroup_test.py::test_deny_group_member_all_rights_to_user | 0.10 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deny_group_member_all_rights_to_group_members | 0.05 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_denial | 0.07 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_denial_two | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_allow | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_allow_two | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval | 0.04 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_two | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_three | 0.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_four | 0.06 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_access_from_certain_network_only_ip | 4.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/keywords_part2_test.py::test_connectin_from_an_unauthorized_network | 0.14 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_ip_keyword_test_noip_cannot | 0.12 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_at_any_time | 0.21 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_morning | 0.12 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_afternoon | 0.09 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_timeofday_keyword | 1.18 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_dayofweek_keyword_test_everyday_can_access | 0.12 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_dayofweek_keyword_today_can_access | 0.15 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_cannot_access_the_data_at_all | 0.16 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_binds_with_a_password_and_can_access_the_data | 0.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/keywords_test.py::test_user_binds_with_a_bad_password_and_cannot_access_the_data | 0.01 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_anonymous_user_cannot_access_the_data | 0.04 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_authenticated_but_has_no_rigth_on_the_data | 0.06 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_the_bind_client_is_accessing_the_directory | 0.03 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_users_binds_with_a_password_and_can_access_the_data | 0.01 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_binds_without_any_password_and_cannot_access_the_data | 0.04 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_the_data_when_connecting_from_any_machine | 0.06 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_the_data_when_connecting_from_internal_ds_network_only | 0.05 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_the_data_when_connecting_from_some_network_only | 0.04 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_from_an_unauthorized_network | 0.05 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_cannot_access_the_data_when_connecting_from_an_unauthorized_network_2 | 0.06 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_cannot_access_the_data_if_not_from_a_certain_domain | 0.06 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_dnsalias_keyword_test_nodns_cannot | 0.26 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_from_ipv4_or_ipv6_address[127.0.0.1] | 0.07 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_from_ipv4_or_ipv6_address[[::1]] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/misc_test.py::test_accept_aci_in_addition_to_acl | 0.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/misc_test.py::test_more_then_40_acl_will_crash_slapd | 0.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_search_access_should_not_include_read_access | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_only_allow_some_targetattr | 0.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_only_allow_some_targetattr_two | 0.40 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_memberurl_needs_to_be_normalized | 0.17 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_greater_than_200_acls_can_be_created | 5.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_server_bahaves_properly_with_very_long_attribute_names | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/misc_test.py::test_do_bind_as_201_distinct_users | 172.79 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_targetattr_with_a_single_attribute | 0.60 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_targetattr_with_multiple_attibutes | 0.07 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_all | 0.14 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_wildcards_in_dn | 0.07 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_multiple_dns | 0.18 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_target_with_wildcards | 0.23 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdnattr | 0.12 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_selfwrite_access_to_anyone | 0.08 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_uniquemember_should_also_be_the_owner | 0.24 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_aci_with_both_allow_and_deny | 0.14 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_owner_to_modify_entry | 0.37 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_allow_write_privilege_to_anyone | 0.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/modrdn_test.py::test_allow_write_privilege_to_dynamic_group_with_scope_set_to_base_in_ldap_url | 0.02 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_write_access_to_naming_atributes | 0.05 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_write_access_to_naming_atributes_two | 0.11 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_access_aci_list_contains_any_deny_rule | 0.17 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_renaming_target_entry | 0.19 | |
No log output captured. | |||
Passed | suites/acl/repeated_ldap_add_test.py::test_repeated_ldap_add | 32.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stdout call------------------------------ uid=buser123,ou=BOU,dc=example,dc=com inactivated. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:184 Testing Bug 1347760 - Information disclosure via repeated use of LDAP ADD operation, etc. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:186 Disabling accesslog logbuffering [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:189 Bind as {cn=Directory Manager,password} [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:192 Adding ou=BOU a bind user belongs to. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:197 Adding a bind user. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:204 Adding a test user. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:211 Deleting aci in dc=example,dc=com. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:214 While binding as DM, acquire an access log path and instance dir [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:220 Bind case 1. the bind user has no rights to read the entry itself, bind should be successful. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:221 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} who has no access rights. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:229 Access log path: /var/log/dirsrv/slapd-standalone1/access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:231 Bind case 2-1. the bind user does not exist, bind should fail with error INVALID_CREDENTIALS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:233 Bind as {uid=bogus,dc=example,dc=com,bogus} who does not exist. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:237 Exception (expected): INVALID_CREDENTIALS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:238 Desc Invalid credentials [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:246 Cause found - [29/Sep/2020:19:27:41.923661614 -0400] conn=1 op=11 RESULT err=49 tag=97 nentries=0 wtime=0.000151720 optime=0.007571397 etime=0.007720955 - No such entry [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:249 Bind case 2-2. the bind user's suffix does not exist, bind should fail with error INVALID_CREDENTIALS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:251 Bind as {uid=bogus,ou=people,dc=bogus,bogus} who does not exist. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:260 Cause found - [29/Sep/2020:19:27:42.932740748 -0400] conn=1 op=12 RESULT err=49 tag=97 nentries=0 wtime=0.000141205 optime=0.004679671 etime=0.004806923 - No suffix for bind dn found [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:263 Bind case 2-3. the bind user's password is wrong, bind should fail with error INVALID_CREDENTIALS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:265 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,bogus} who does not exist. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:269 Exception (expected): INVALID_CREDENTIALS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:270 Desc Invalid credentials [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:278 Cause found - [29/Sep/2020:19:27:43.970592794 -0400] conn=1 op=13 RESULT err=49 tag=97 nentries=0 wtime=0.000263328 optime=0.034530864 etime=0.034786808 - Invalid credentials [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:281 Adding aci for uid=buser123,ou=BOU,dc=example,dc=com to ou=BOU,dc=example,dc=com. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:283 aci: (targetattr="*")(version 3.0; acl "buser123"; allow(all) userdn = "ldap:///uid=buser123,ou=BOU,dc=example,dc=com";) [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:284 Bind as {cn=Directory Manager,password} [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:289 Bind case 3. the bind user has the right to read the entry itself, bind should be successful. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:290 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} which should be ok. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:293 The following operations are against the subtree the bind user uid=buser123,ou=BOU,dc=example,dc=com has no rights. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:297 Search case 1. the bind user has no rights to read the search entry, it should return no search results with <class 'ldap.SUCCESS'> [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Searching existing entry uid=tuser0,ou=people,dc=example,dc=com, which should be ok. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:303 Search case 2-1. the search entry does not exist, the search should return no search results with SUCCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Searching non-existing entry uid=bogus,dc=example,dc=com, which should be ok. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:309 Search case 2-2. the search entry does not exist, the search should return no search results with SUCCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Searching non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should be ok. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:316 Add case 1. the bind user has no rights AND the adding entry exists, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Adding existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:322 Add case 2-1. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Adding non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:328 Add case 2-2. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Adding non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:335 Modify case 1. the bind user has no rights AND the modifying entry exists, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Modifying existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:341 Modify case 2-1. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Modifying non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:347 Modify case 2-2. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Modifying non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:354 Modrdn case 1. the bind user has no rights AND the renaming entry exists, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Renaming existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:360 Modrdn case 2-1. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Renaming non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:366 Modrdn case 2-2. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Renaming non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:372 Modrdn case 3. the bind user has no rights AND the node moving an entry to exists, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Moving to existing superior ou=groups,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:378 Modrdn case 4-1. the bind user has no rights AND the node moving an entry to does not, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:384 Modrdn case 4-2. the bind user has no rights AND the node moving an entry to does not, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:391 Delete case 1. the bind user has no rights AND the deleting entry exists, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Deleting existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:397 Delete case 2-1. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Deleting non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:403 Delete case 2-2. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Deleting non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:407 EXTRA: Check no regressions [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:408 Adding aci for uid=buser123,ou=BOU,dc=example,dc=com to dc=example,dc=com. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:410 Bind as {cn=Directory Manager,password} [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:415 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123}. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:425 Search case. the search entry does not exist, the search should fail with NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Searching non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:431 Add case. the adding entry already exists, it should fail with ALREADY_EXISTS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Adding existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with ALREADY_EXISTS. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): ALREADY_EXISTS [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Already exists [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:436 Modify case. the modifying entry does not exist, it should fail with NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Modifying non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:441 Modrdn case 1. the renaming entry does not exist, it should fail with NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Renaming non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:446 Modrdn case 2. the node moving an entry to does not, it should fail with NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:451 Delete case. the deleting entry does not exist, it should fail with NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:108 Deleting non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:454 Inactivate uid=buser123,ou=BOU,dc=example,dc=com [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:461 ['/usr/sbin/ns-inactivate.pl', '-Z', 'standalone1', '-D', 'cn=Directory Manager', '-w', 'password', '-I', 'uid=buser123,ou=BOU,dc=example,dc=com'] [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:465 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} which should fail with UNWILLING_TO_PERFORM. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:469 Exception (expected): UNWILLING_TO_PERFORM [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:470 Desc Server is unwilling to perform [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:473 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,bogus} which should fail with UNWILLING_TO_PERFORM. [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:477 Exception (expected): UNWILLING_TO_PERFORM [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:478 Desc Server is unwilling to perform [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:481 SUCCESS | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, NESTED_ROLE_TESTER)] | 0.06 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, NESTED_ROLE_TESTER)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(MARY_ROLE, NOT_RULE_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, OR_RULE_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, OR_RULE_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, ALL_ACCESS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, ALL_ACCESS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(MARY_ROLE, ALL_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(MARY_ROLE, NESTED_ROLE_TESTER)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(STEVE_ROLE, NOT_RULE_ACCESS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(HARRY_ROLE, NOT_RULE_ACCESS)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(MARY_ROLE , OR_RULE_ACCESS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_positive[NOT_RULE_ACCESS] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_positive[ALL_ACCESS] | 0.14 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_negaive[NESTED_ROLE_TESTER] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_negaive[OR_RULE_ACCESS] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_non_leaf | 1.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_wildcard_non_leaf | 1.12 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_wildcard_leaf | 1.40 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search | 1.11 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search_two | 1.42 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search | 1.27 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search_two | 1.48 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_boolean_or_of_two_equality_search | 0.21 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_to__userdn_two | 1.19 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_userdn | 1.21 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_presence_search | 0.16 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url | 0.91 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url_two | 0.99 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url_matching_all_users | 1.56 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_a_dynamic_group | 0.69 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_dynamic_group_with_host_port_set_on_ldap_url | 0.57 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_dynamic_group_with_scope_set_to_one_in_ldap_url | 0.68 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_dynamic_group_two | 1.15 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_access_to_group_should_deny_access_to_all_uniquemember | 1.05 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_entry_with_lots_100_attributes | 11.40 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_groupdnattr_value_is_another_group | 0.21 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with_target_set | 1.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_to_a_target_with_wild_card | 0.98 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_without_a_target_set | 1.64 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_read_search_and_compare_access_with_target_and_targetattr_set | 0.90 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_read_access_to_multiple_groupdns | 1.31 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_to_userdnattr | 1.12 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with__target_set | 1.65 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with__targetattr_set | 1.96 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with_targetattr_set | 1.37 | |
No log output captured. | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_add | 0.58 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389:selfdn_permissions_test.py:58 Add OCticket47653 that allows 'member' attribute [32mINFO [0m lib389:selfdn_permissions_test.py:63 Add cn=bind_entry, dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:selfdn_permissions_test.py:106 ######################### ADD ###################### [32mINFO [0m lib389:selfdn_permissions_test.py:109 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:139 Try to add Add cn=test_entry, dc=example,dc=com (aci is missing): dn: cn=test_entry, dc=example,dc=com cn: test_entry member: cn=bind_entry, dc=example,dc=com objectclass: top objectclass: person objectclass: OCticket47653 postalAddress: here postalCode: 1234 sn: test_entry [32mINFO [0m lib389:selfdn_permissions_test.py:143 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:147 Bind as cn=Directory Manager and add the ADD SELFDN aci [32mINFO [0m lib389:selfdn_permissions_test.py:159 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:164 Try to add Add cn=test_entry, dc=example,dc=com (member is missing) [32mINFO [0m lib389:selfdn_permissions_test.py:172 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:178 Try to add Add cn=test_entry, dc=example,dc=com (with several member values) [32mINFO [0m lib389:selfdn_permissions_test.py:181 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:184 Try to add Add cn=test_entry, dc=example,dc=com should be successful | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_search | 0.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:selfdn_permissions_test.py:205 ######################### SEARCH ###################### [32mINFO [0m lib389:selfdn_permissions_test.py:207 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:211 Try to search cn=test_entry, dc=example,dc=com (aci is missing) [32mINFO [0m lib389:selfdn_permissions_test.py:216 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci [32mINFO [0m lib389:selfdn_permissions_test.py:229 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:233 Try to search cn=test_entry, dc=example,dc=com should be successful | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_modify | 0.70 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:selfdn_permissions_test.py:256 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:259 ######################### MODIFY ###################### [32mINFO [0m lib389:selfdn_permissions_test.py:263 Try to modify cn=test_entry, dc=example,dc=com (aci is missing) [32mINFO [0m lib389:selfdn_permissions_test.py:267 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:271 Bind as cn=Directory Manager and add the WRITE SELFDN aci [32mINFO [0m lib389:selfdn_permissions_test.py:284 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:288 Try to modify cn=test_entry, dc=example,dc=com. It should succeeds | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_delete | 0.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:selfdn_permissions_test.py:314 ######################### DELETE ###################### [32mINFO [0m lib389:selfdn_permissions_test.py:317 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:322 Try to delete cn=test_entry, dc=example,dc=com (aci is missing) [32mINFO [0m lib389:selfdn_permissions_test.py:325 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:329 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci [32mINFO [0m lib389:selfdn_permissions_test.py:341 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:345 Try to delete cn=test_entry, dc=example,dc=com should be successful | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_1] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_2] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_3] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_4] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_5] | 0.15 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_6] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_7] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_8] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_9] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_10] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_11] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_12] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_13] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_14] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_15] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_16] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_17] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_19] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_21] | 0.16 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_22] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_23] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_acl_mispel] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_acl_string] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Wrong_version_string] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_version_string] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Authenticate_statement] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Multiple_targets] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Target_set_to_self] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_ldap_instead_of_ldap] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_more_than_three] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_less_than_three] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_bind_rule_set_with_less_than_three] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_semicolon_instead_of_comma_in_permission] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_double_equal_instead_of_equal_in_the_target] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_use_double_equal_instead_of_equal_in_user_and_group_access] | 0.16 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_donot_cote_the_name_of_the_aci] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_1] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_2] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_3] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_no_semicolon_at_the_end_of_the_aci] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_a_character_different_of_a_semicolon_at_the_end_of_the_aci] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_bad_filter] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_double_equal_instead_of_equal_in_the_targattrfilters] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_double_equal_instead_of_equal_inside_the_targattrfilters] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_target_set_above_the_entry_test | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ROLEDNACCESS)] | 0.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,USERDNACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,GROUPDNACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,LDAPURLACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ATTRNAMEACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_0, OU_2)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_1,ANCESTORS)] | 0.53 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_2,GRANDPARENTS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,OU_2)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4, ANCESTORS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,GRANDPARENTS)] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,PARENTS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,CHILDREN)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,ROLEDNACCESS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,USERDNACCESS)] | 0.23 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,GROUPDNACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,LDAPURLACCESS)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,ATTRNAMEACCESS)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0, ANCESTORS)] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,GRANDPARENTS)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,PARENTS)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,CHILDREN)] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_2,PARENTS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_4,GRANDSONS)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=USERDNACCESS,ou=Accounting,dc=example,dc=com] | 0.06 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=ROLEDNACCESS,ou=Accounting,dc=example,dc=com] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=GROUPDNACCESS,ou=Accounting,dc=example,dc=com] | 0.03 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_we_can_search_as_expected | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/valueacl_part2_test.py::test_we_can_mod_title_as_expected | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_modify_with_multiple_filters | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_denied_by_multiple_filters | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_allowed_add_one_attribute | 0.06 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_cannot_add_an_entry_with_attribute_values_we_are_not_allowed_add | 0.09 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_on_modrdn | 0.30 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_on_modrdn_allow | 0.08 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_targattrfilters_keyword | 0.13 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_not_allowed_to_delete | 0.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/acl/valueacl_test.py::test_donot_allow_write_access_to_title_if_value_is_not_architect | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_allowed_to_delete | 0.06 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_not_allowed_to_deleted | 0.06 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_modify_replace | 0.09 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_modify_delete | 0.08 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_replace_an_attribute_if_we_lack | 0.08 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_have_del_rights_to_all_attr_value | 0.06 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_donot_have_del_rights_to_all_attr_value | 0.08 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_have_del_rights_to_all_attr_values | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_cantnot_delete_an_entry_with_attribute_values_we_are_not_allowed_delete | 0.09 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_we_can_add_and_delete_an_entry_with_attribute_values_we_are_allowed_add_and_delete | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_title | 0.10 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_to_modify | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_selfwrite_does_not_confer_write_on_a_targattrfilters_atribute | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_selfwrite_continues_to_give_rights_to_attr_in_targetattr_list | 0.17 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_add_an_attribute_value_we_are_allowed_to_add_with_ldapanyone | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_hierarchy | 0.09 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_targattrfilters_and_search_permissions_and_that_ldapmodify_works_as_expected | 0.04 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_targattrfilters_and_search_permissions_and_that_ldapmodify_works_as_expected_two | 0.02 | |
No log output captured. | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_basic | 6.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:35 Enable TLS for attribute encryption [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:38 Enables attribute encryption [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:42 Enables attribute encryption for employeeNumber and telephoneNumber [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:46 Add a test user with encrypted attributes -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:81 Restart the server [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:87 Extracting values of cn from the list of objects in encrypt_attrs [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:88 And appending the cn values in a list [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:93 Check employeenumber encryption is enabled [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:96 Check telephoneNumber encryption is enabled [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:99 Check that encrypted attribute is present for user i.e. telephonenumber | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_ciphertext | 14.59 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_ciphertext.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:127 Export data as ciphertext [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:138 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:139 Check that the encrypted value of attribute is not present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:145 Delete the test user entry with encrypted data [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:148 Import data as ciphertext, which was exported previously [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:159 Check that the data with encrypted attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_plaintext | 15.15 | |
------------------------------Captured stderr call------------------------------ [29/Sep/2020:19:31:27.273642233 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [29/Sep/2020:19:31:27.307257871 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [29/Sep/2020:19:31:27.311973788 -0400] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [29/Sep/2020:19:31:27.316059347 -0400] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [29/Sep/2020:19:31:27.544584059 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [29/Sep/2020:19:31:27.550204714 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [29/Sep/2020:19:31:27.555788368 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif [29/Sep/2020:19:31:34.411637806 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [29/Sep/2020:19:31:34.421651570 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [29/Sep/2020:19:31:34.425499228 -0400] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [29/Sep/2020:19:31:34.429487792 -0400] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [29/Sep/2020:19:31:34.632774426 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [29/Sep/2020:19:31:34.637654783 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [29/Sep/2020:19:31:34.643267938 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:189 Export data as plain text [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:200 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:201 Check that the plain text value of the encrypted attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:205 Delete the test user entry with encrypted data [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:208 Import data as plain text, which was exported previously [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:219 Check that the attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_unindexed | 5.89 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/emp_num_ciphertext.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:242 Export data as cipher text [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:253 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:254 Check that the encrypted value of attribute is not present in the exported file | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_multiple_backends | 9.50 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db1.ldif ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db2.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:287 Add two test backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:307 Enables attribute encryption for telephoneNumber in test_backend1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:312 Enables attribute encryption for employeeNumber in test_backend2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:317 Add a test user with encrypted attributes in both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:326 Export data as ciphertext from both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:343 Check that the attribute is present in the exported file in db1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:344 Check that the encrypted value of attribute is not present in the exported file in db1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:350 Check that the attribute is present in the exported file in db2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:351 Check that the encrypted value of attribute is not present in the exported file in db2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:357 Delete test backends | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_backends | 10.25 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db1.ldif ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db2.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:386 Add two test backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:405 Enables attribute encryption for telephoneNumber in test_backend1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:410 Add a test user with telephoneNumber in both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:419 Export data as ciphertext from both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:436 Check that the attribute is present in the exported file in db1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:437 Check that the encrypted value of attribute is not present in the exported file in db1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:443 Check that the attribute is present in the exported file in db2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:444 Check that the value of attribute is also present in the exported file in db2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:450 Delete test backends | |||
Passed | suites/automember_plugin/automember_mod_test.py::test_mods | 9.53 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.automember_plugin.automember_mod_test:automember_mod_test.py:135 Test PASSED | |||
Passed | suites/automember_plugin/automember_test.py::test_automemberscope | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/automember_plugin/automember_test.py::test_automemberfilter | 0.17 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_adduser | 0.32 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_delete_default_group | 4.53 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_no_default_group | 4.18 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_delete_target_group | 5.00 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_disable_the_plug_in | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. | |||
Passed | suites/automember_plugin/basic_test.py::test_custom_config_area | 0.02 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_ability_to_control_behavior_of_modifiers_name | 9.55 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_posixaccount_objectclass_automemberdefaultgroup | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_duplicated_member_attributes_added_when_the_entry_is_re_created | 0.34 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_for_hostgroups | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_plugin_creates_member_attributes_of_the_automemberdefaultgroup | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_with_uniquemember | 8.38 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_invalid_automembergroupingattr_member | 0.56 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_valid_and_invalid_automembergroupingattr | 0.66 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_add_regular_expressions_for_user_groups_and_check_for_member_attribute_after_adding_users | 0.17 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_22-5288-5289-Contractor-5291-5292-Contractors] | 0.07 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_21-1161-1162-Contractor-1162-1163-Contractors] | 0.07 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_20-1188-1189-CEO-1191-1192-Contractors] | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_15-9288-9289-Manager-9291-9292-Managers] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_14-561-562-Manager-562-563-Managers] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_13-9788-9789-VPEngg-9392-9393-Managers] | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_26-5788-5789-Intern-Contractors-SuffDef1-5] | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_25-9788-9789-Employee-Contractors-Managers-1] | 0.05 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_24-1110-1111-Employee-Contractors-SuffDef1-5] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_23-2788-2789-Contractor-Contractors-SuffDef1-5] | 0.07 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_19-5788-5789-HRManager-Managers-SuffDef1-5] | 0.10 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_18-6788-6789-Junior-Managers-SuffDef1-5] | 0.10 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_17-562-563-Junior-Managers-SuffDef1-5] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_16-6788-6789-Manager-Managers-SuffDef1-5] | 0.09 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_contractors_exclusive_regex_rules_member_uid[autoMembers_32-555-720-Employee-SubDef1-SubDef3] | 0.11 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_contractors_exclusive_regex_rules_member_uid[autoMembers_31-515-200-Junior-SubDef1-SubDef5] | 0.12 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_contractors_exclusive_regex_rules_member_uid[autoMembers_30-999-400-Supervisor-SubDef1-SubDef2] | 0.10 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_contractors_exclusive_regex_rules_member_uid[autoMembers_28-555-3663-ContractHR-Contractors,cn=subsuffGroups-Managers,cn=subsuffGroups] | 0.11 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_27-595-690-ContractHR-Managers-Contractors] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_29-8195-2753-Employee-Contractors-Managers] | 0.07 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_33-545-3333-Supervisor-Contractors-Managers] | 0.10 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_34-8195-693-Temporary-Managers-Contractors] | 0.08 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_reject_invalid_config_and_we_donot_deadlock_the_server | 9.33 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_re_build_task | 10.65 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_export_task | 9.48 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:1036 Automember Export Updates task (task-09292020_193408) completed successfully | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_mapping | 2.23 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:1084 Automember Map Updates task (task-09292020_193410) completed successfully | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_re_build | 8.45 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_export | 13.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:1036 Automember Export Updates task (task-09292020_193430) completed successfully | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_run_re_build | 20.60 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_automemtask_run_export | 15.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:1036 Automember Export Updates task (task-09292020_193509) completed successfully | |||
Passed | suites/automember_plugin/configuration_test.py::test_configuration | 4.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/backups/backup_test.py::test_missing_backend | 5.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/basic/basic_test.py::test_basic_ops | 1.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/basic/basic_test.py::test_basic_import_export | 49.94 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif | |||
Passed | suites/basic/basic_test.py::test_basic_backup | 10.44 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:616 Backup task backup_09292020_193636 completed successfully [32mINFO [0m lib389:tasks.py:670 Restore task restore_09292020_193638 completed successfully | |||
Passed | suites/basic/basic_test.py::test_basic_db2index | 5.95 | |
------------------------------Captured stderr call------------------------------ [29/Sep/2020:19:36:49.459314374 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:19:36:49.470239319 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7583924224, process usage 23080960 [29/Sep/2020:19:36:49.477392688 -0400] - INFO - check_and_set_import_cache - Import allocates 2962470KB import cache. [29/Sep/2020:19:36:49.483810417 -0400] - INFO - bdb_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/givenName.db) [29/Sep/2020:19:36:49.487798478 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/givenName.db [29/Sep/2020:19:36:49.498605254 -0400] - INFO - bdb_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/aci.db) [29/Sep/2020:19:36:49.503902710 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/aci.db [29/Sep/2020:19:36:49.509654512 -0400] - INFO - bdb_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/sn.db) [29/Sep/2020:19:36:49.514367569 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/sn.db [29/Sep/2020:19:36:49.518737153 -0400] - INFO - bdb_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/numsubordinates.db) [29/Sep/2020:19:36:49.522820315 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/numsubordinates.db [29/Sep/2020:19:36:49.528097153 -0400] - INFO - bdb_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/entryusn.db) [29/Sep/2020:19:36:49.571217673 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/entryusn.db [29/Sep/2020:19:36:49.575040549 -0400] - INFO - bdb_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/nsuniqueid.db) [29/Sep/2020:19:36:49.578737815 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/nsuniqueid.db [29/Sep/2020:19:36:49.582229205 -0400] - INFO - bdb_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/ancestorid.db) [29/Sep/2020:19:36:49.591568240 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/ancestorid.db [29/Sep/2020:19:36:49.596513353 -0400] - INFO - bdb_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/parentid.db) [29/Sep/2020:19:36:49.600555954 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/parentid.db [29/Sep/2020:19:36:49.603930512 -0400] - INFO - bdb_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/mail.db) [29/Sep/2020:19:36:49.609063317 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/mail.db [29/Sep/2020:19:36:49.613473966 -0400] - INFO - bdb_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/telephoneNumber.db) [29/Sep/2020:19:36:49.617273787 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/telephoneNumber.db [29/Sep/2020:19:36:49.622214996 -0400] - INFO - bdb_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/cn.db) [29/Sep/2020:19:36:49.626217049 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/cn.db [29/Sep/2020:19:36:49.633632906 -0400] - INFO - bdb_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/DBVERSION) [29/Sep/2020:19:36:49.637190542 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/DBVERSION [29/Sep/2020:19:36:49.640876009 -0400] - INFO - bdb_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/uid.db) [29/Sep/2020:19:36:49.644398187 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/uid.db [29/Sep/2020:19:36:49.648740000 -0400] - INFO - bdb_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/entryrdn.db) [29/Sep/2020:19:36:49.654838176 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/entryrdn.db [29/Sep/2020:19:36:49.660055705 -0400] - INFO - bdb_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/uniquemember.db) [29/Sep/2020:19:36:49.663638469 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/uniquemember.db [29/Sep/2020:19:36:49.666751892 -0400] - INFO - bdb_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/id2entry.db) [29/Sep/2020:19:36:49.673313716 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/id2entry.db [29/Sep/2020:19:36:49.677979350 -0400] - INFO - bdb_copy_directory - Backing up file 16 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/objectclass.db) [29/Sep/2020:19:36:49.681856508 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/userRoot/objectclass.db [29/Sep/2020:19:36:49.688366187 -0400] - INFO - upgradedb_core - userRoot: Start upgradedb. [29/Sep/2020:19:36:49.693587763 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [29/Sep/2020:19:36:49.698140298 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7582932992, process usage 23994368 [29/Sep/2020:19:36:49.701569408 -0400] - INFO - check_and_set_import_cache - Import allocates 2962083KB import cache. [29/Sep/2020:19:36:49.888679930 -0400] - INFO - bdb_import_main - reindex userRoot: Index buffering enabled with bucket size 100 [29/Sep/2020:19:36:50.595784613 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [29/Sep/2020:19:36:50.800126096 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [29/Sep/2020:19:36:50.803913428 -0400] - INFO - bdb_import_main - reindex userRoot: Cleaning up producer thread... [29/Sep/2020:19:36:50.806954069 -0400] - INFO - bdb_import_main - reindex userRoot: Indexing complete. Post-processing... [29/Sep/2020:19:36:50.809856072 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [29/Sep/2020:19:36:50.813010741 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numSubordinates complete. [29/Sep/2020:19:36:50.816665948 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [29/Sep/2020:19:36:50.819949341 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [29/Sep/2020:19:36:50.823784041 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Starting sort of ancestorid non-leaf IDs... [29/Sep/2020:19:36:50.832198405 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished sort of ancestorid non-leaf IDs. [29/Sep/2020:19:36:50.841379883 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [29/Sep/2020:19:36:50.846102580 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [29/Sep/2020:19:36:50.849621928 -0400] - INFO - bdb_import_main - reindex userRoot: Flushing caches... [29/Sep/2020:19:36:50.853664613 -0400] - INFO - bdb_import_main - reindex userRoot: Closing files... [29/Sep/2020:19:36:50.976604195 -0400] - INFO - bdb_import_main - reindex userRoot: Reindexing complete. Processed 160 entries in 1 seconds. (160.00 entries/sec) [29/Sep/2020:19:36:50.995092124 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/log.0000000001 [29/Sep/2020:19:36:51.013037467 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T19:36:49.318812/DBVERSION [29/Sep/2020:19:36:51.017206967 -0400] - INFO - bdb_pre_close - All database threads now stopped [29/Sep/2020:19:36:51.220467281 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [29/Sep/2020:19:36:51.227746412 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:19:36:51.237829908 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [29/Sep/2020:19:36:51.242426987 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7583473664, process usage 22917120 [29/Sep/2020:19:36:51.246665547 -0400] - INFO - check_and_set_import_cache - Import allocates 2962294KB import cache. [29/Sep/2020:19:36:51.428976395 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: uid [29/Sep/2020:19:36:51.434129287 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [29/Sep/2020:19:36:51.437193000 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [29/Sep/2020:19:36:51.453064491 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [29/Sep/2020:19:36:51.480056901 -0400] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | suites/basic/basic_test.py::test_basic_acl | 0.29 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_searches | 0.10 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_req_attrs[attrs0-cn-False] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_req_attrs[attrs1-cn-True] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_req_attrs[attrs2-nsUniqueId-True] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_req_attrs[attrs3-cn-True] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_req_attrs[attrs4-cn-True] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_referrals | 3.86 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_systemctl | 12.17 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_ldapagent | 5.03 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_dse_survives_kill9 | 11.65 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[namingContexts] | 0.03 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedLDAPVersion] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedControl] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedExtension] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedSASLMechanisms] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[vendorName] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[vendorVersion] | 0.15 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[namingContexts] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedLDAPVersion] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedControl] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedExtension] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedSASLMechanisms] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[vendorName] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[vendorVersion] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_anonymous_search | 0.04 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_original_type | 0.26 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_ou | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_connection_buffer_size | 0.03 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_critical_msg_on_empty_range_idl | 4.98 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_ldbm_modification_audit_log | 11.53 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_dscreate | 16.57 | |
------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_dscreate | |||
Passed | suites/basic/basic_test.py::test_dscreate_ldapi | 0.00 | |
-----------------------------Captured stdout setup------------------------------ Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef -------------------------------Captured log call-------------------------------- [35mDEBUG [0m RootDSE:_mapped_object.py:635 get_attr_vals('supportedControl') | |||
Passed | suites/basic/basic_test.py::test_dscreate_multiple_dashes_name | 12.18 | |
-----------------------------Captured stdout setup------------------------------ Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[c=uk] | 17.15 | |
------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_different_rdn | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[cn=test_user] | 17.53 | |
-----------------------------Captured stdout setup------------------------------ Removing instance ... Completed instance removal ------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_different_rdn | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[dc=example,dc=com] | 15.72 | |
-----------------------------Captured stdout setup------------------------------ Removing instance ... Completed instance removal ------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_different_rdn | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[o=south] | 17.69 | |
-----------------------------Captured stdout setup------------------------------ Removing instance ... Completed instance removal ------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_different_rdn | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[ou=sales] | 15.85 | |
-----------------------------Captured stdout setup------------------------------ Removing instance ... Completed instance removal ------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_different_rdn | |||
Passed | suites/basic/basic_test.py::test_dscreate_with_different_rdn[wrong=some_value] | 15.38 | |
-----------------------------Captured stdout setup------------------------------ Removing instance ... Completed instance removal ------------------------------Captured stdout call------------------------------ Starting installation... Error: Instance creation failed! Suffix RDN 'wrong' in 'wrong=some_value' is not supported. Supported RDN's are: 'c', 'cn', 'dc', 'o', and 'ou' -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.suites.basic.basic_test:basic_test.py:1474 dscreate failed! Error (1) None | |||
Passed | suites/betxns/betxn_test.py::test_betxt_7bit | 4.86 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:52 Running test_betxt_7bit... [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:78 test_betxt_7bit: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_attr_uniqueness | 4.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:133 test_betxn_attr_uniqueness: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_memberof | 5.24 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:179 test_betxn_memberof: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_modrdn_memberof_cache_corruption | 4.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:233 test_betxn_modrdn_memberof: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_ri_and_mep_cache_corruption | 0.49 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:357 Test PASSED | |||
Passed | suites/clu/clu_test.py::test_clu_pwdhash | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:40 Running test_clu_pwdhash... [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:54 pwdhash generated: {SSHA}yf5y8NTRZNnANXAduDkwup8D7vZQCp3/cGe1/g== [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:55 test_clu_pwdhash: PASSED | |||
Passed | suites/clu/clu_test.py::test_clu_pwdhash_mod | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:78 Running test_clu_pwdhash_mod... [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:87 pwdhash generated: {SSHA256}447wP47cFPDj42YmIE+ek64zURdkET72e27GffkCfEoW/NL2hgeriw== [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:88 returned the hashed string using the algorithm set in nsslapd-rootpwstoragescheme | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_users | 6.47 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:119 Run ldifgen to create users ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=people,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - number=1000 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - rdn-cn=False [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - generic=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - start-idx=50 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - localize=False [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:196 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:122 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "suffix=dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=people,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "number=1000" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "rdn-cn=False" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "generic=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "start-idx=50" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "localize=False" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:127 Get number of accounts before import [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:48 Stopping the server and running offline import... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:133 Check that accounts are imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_groups | 39.66 | |
------------------------------Captured stderr call------------------------------ ldap_add: Already exists (68) ldap_add: Already exists (68) ldap_add: Already exists (68) -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:183 Run ldifgen to create group ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=myGroup [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - number=1 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - num-members=1000 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-members=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - member-attr=uniquemember [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - member-parent=ou=people,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:250 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:186 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=myGroup" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "number=1" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "suffix=dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "num-members=1000" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-members=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "member-parent=ou=people,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "member-attr=uniquemember" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:191 Get number of accounts before import [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:200 Check that accounts are imported [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:203 Check that group is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_classic | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:256 Run ldifgen to create COS definition ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=classic [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos definitions,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-specifier=businessCategory [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-template=cn=sales,cn=classicCoS,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:259 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Postal_Def" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=classic" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=cos definitions,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-specifier=businessCategory" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-template=cn=sales,cn=classicCoS,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-attr=['postalcode', 'telephonenumber']" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:267 Check that COS definition is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_pointer | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:322 Run ldifgen to create COS definition ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=pointer [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def_pointer [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos pointer definitions,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-template=cn=sales,cn=pointerCoS,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:325 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Postal_Def_pointer" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=pointer" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=cos pointer definitions,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-template=cn=sales,cn=pointerCoS,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-attr=['postalcode', 'telephonenumber']" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:333 Check that COS definition is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_indirect | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:387 Run ldifgen to create COS definition ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=indirect [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def_indirect [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos indirect definitions,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-specifier=businessCategory [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:390 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Postal_Def_indirect" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=indirect" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=cos indirect definitions,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-specifier=businessCategory" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-attr=['postalcode', 'telephonenumber']" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:398 Check that COS definition is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_template | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:449 Run ldifgen to create COS template ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Template [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos templates,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-priority=1 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr-val=postalcode:12345 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:341 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:452 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Template" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=cos templates,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-priority=1" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "cos-attr-val=postalcode:12345" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:460 Check that COS template is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_managed_role | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:511 Run ldifgen to create managed role ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Managed_Role [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=managed roles,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=managed [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:514 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Managed_Role" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=managed roles,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=managed" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:522 Check that managed role is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_filtered_role | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:571 Run ldifgen to create filtered role ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Filtered_Role [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=filtered roles,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=filtered [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - filter="objectclass=posixAccount" [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:574 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Filtered_Role" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=filtered roles,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=filtered" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "filter="objectclass=posixAccount"" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:582 Check that filtered role is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_nested_role | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:632 Run ldifgen to create nested role ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Nested_Role [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=nested roles,dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - type=nested [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - role-dn=['cn=some_role,ou=roles,dc=example,dc=com'] [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:635 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "NAME=My_Nested_Role" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=ou=nested roles,dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "type=nested" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "role-dn=['cn=some_role,ou=roles,dc=example,dc=com']" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:643 Check that nested role is imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_mod_ldif_mixed | 41.42 | |
------------------------------Captured stderr call------------------------------ ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldapmodify: extra lines at end (line 43453, entry "uid=user0999,dc=example,dc=com") -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:702 Run ldifgen to create modification ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - parent=dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-users=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - delete-users=True [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=False [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - num-users=1000 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - add-users=100 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - del-users=999 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - modrdn-users=100 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - mod-users=10 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - mod-attrs=['cn', 'uid', 'sn'] [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - randomize=False [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:467 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:705 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-users=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "parent=dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "create-parent=False" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "delete-users=True" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "num-users=1000" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "add-users=100" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "del-users=999" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "modrdn-users=100" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "mod-users=10" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "mod-attrs=['cn', 'uid', 'sn']" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "randomize=False" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:710 Get number of accounts before import [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:719 Check that some accounts are imported | |||
Passed | suites/clu/dbgen_test.py::test_dsconf_dbgen_nested_ldif | 29.13 | |
------------------------------Captured stderr call------------------------------ ldap_add: Already exists (68) -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:759 Run ldifgen to create nested ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - node-limit=100 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:61 - num-users=600 [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... [32mINFO [0m tests.suites.clu.dbgen_test:dbgen.py:500 Successfully created nested LDIF file (/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif) containing 6 nodes/subtrees [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:762 Check if file exists [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Generating LDIF with the following options:" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "suffix=dc=example,dc=com" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "node-limit=100" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "num-users=600" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Writing LDIF" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:68 Check if "Successfully created nested LDIF file (/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif) containing 6 nodes/subtrees" is present in output [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:767 Get number of accounts before import [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify [32mINFO [0m tests.suites.clu.dbgen_test:dbgen_test.py:779 Check that accounts are imported | |||
Passed | suites/clu/dbmon_test.py::test_dsconf_dbmon | 0.32 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:164 Sanity check for syntax [32mINFO [0m LogCapture:monitor.py:247 DB Monitor Report: 2020-09-29 19:43:35 [32mINFO [0m LogCapture:monitor.py:248 -------------------------------------------------------- [32mINFO [0m LogCapture:monitor.py:249 Database Cache: [32mINFO [0m LogCapture:monitor.py:250 - Cache Hit Ratio: 70% [32mINFO [0m LogCapture:monitor.py:251 - Free Space: 487.05 MB [32mINFO [0m LogCapture:monitor.py:252 - Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:253 - RO Page Drops: 0 [32mINFO [0m LogCapture:monitor.py:254 - Pages In: 8 [32mINFO [0m LogCapture:monitor.py:255 - Pages Out: 0 [32mINFO [0m LogCapture:monitor.py:256 [32mINFO [0m LogCapture:monitor.py:257 Normalized DN Cache: [32mINFO [0m LogCapture:monitor.py:258 - Cache Hit Ratio: 78% [32mINFO [0m LogCapture:monitor.py:259 - Free Space: 19.99 MB [32mINFO [0m LogCapture:monitor.py:260 - Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:261 - DN Count: 54 [32mINFO [0m LogCapture:monitor.py:262 - Evictions: 0 [32mINFO [0m LogCapture:monitor.py:263 [32mINFO [0m LogCapture:monitor.py:264 Backends: [32mINFO [0m LogCapture:monitor.py:266 - dc=example,dc=com (userRoot): [32mINFO [0m LogCapture:monitor.py:267 - Entry Cache Hit Ratio: 57% [32mINFO [0m LogCapture:monitor.py:268 - Entry Cache Count: 2 [32mINFO [0m LogCapture:monitor.py:269 - Entry Cache Free Space: 1.31 GB [32mINFO [0m LogCapture:monitor.py:270 - Entry Cache Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:271 - Entry Cache Average Size: 3.78 KB [32mINFO [0m LogCapture:monitor.py:272 - DN Cache Hit Ratio: 0% [32mINFO [0m LogCapture:monitor.py:273 - DN Cache Count: 2 [32mINFO [0m LogCapture:monitor.py:274 - DN Cache Free Space: 192.0 MB [32mINFO [0m LogCapture:monitor.py:275 - DN Cache Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:276 - DN Cache Average Size: 63.0 B [32mINFO [0m LogCapture:monitor.py:286 [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:171 Sanity check for --indexes output [32mINFO [0m LogCapture:monitor.py:247 DB Monitor Report: 2020-09-29 19:43:35 [32mINFO [0m LogCapture:monitor.py:248 -------------------------------------------------------- [32mINFO [0m LogCapture:monitor.py:249 Database Cache: [32mINFO [0m LogCapture:monitor.py:250 - Cache Hit Ratio: 70% [32mINFO [0m LogCapture:monitor.py:251 - Free Space: 487.05 MB [32mINFO [0m LogCapture:monitor.py:252 - Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:253 - RO Page Drops: 0 [32mINFO [0m LogCapture:monitor.py:254 - Pages In: 8 [32mINFO [0m LogCapture:monitor.py:255 - Pages Out: 0 [32mINFO [0m LogCapture:monitor.py:256 [32mINFO [0m LogCapture:monitor.py:257 Normalized DN Cache: [32mINFO [0m LogCapture:monitor.py:258 - Cache Hit Ratio: 78% [32mINFO [0m LogCapture:monitor.py:259 - Free Space: 19.99 MB [32mINFO [0m LogCapture:monitor.py:260 - Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:261 - DN Count: 54 [32mINFO [0m LogCapture:monitor.py:262 - Evictions: 0 [32mINFO [0m LogCapture:monitor.py:263 [32mINFO [0m LogCapture:monitor.py:264 Backends: [32mINFO [0m LogCapture:monitor.py:266 - dc=example,dc=com (userRoot): [32mINFO [0m LogCapture:monitor.py:267 - Entry Cache Hit Ratio: 57% [32mINFO [0m LogCapture:monitor.py:268 - Entry Cache Count: 2 [32mINFO [0m LogCapture:monitor.py:269 - Entry Cache Free Space: 1.31 GB [32mINFO [0m LogCapture:monitor.py:270 - Entry Cache Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:271 - Entry Cache Average Size: 3.78 KB [32mINFO [0m LogCapture:monitor.py:272 - DN Cache Hit Ratio: 0% [32mINFO [0m LogCapture:monitor.py:273 - DN Cache Count: 2 [32mINFO [0m LogCapture:monitor.py:274 - DN Cache Free Space: 192.0 MB [32mINFO [0m LogCapture:monitor.py:275 - DN Cache Free Percentage: 100.0% [32mINFO [0m LogCapture:monitor.py:276 - DN Cache Average Size: 63.0 B [32mINFO [0m LogCapture:monitor.py:278 - Indexes: [32mINFO [0m LogCapture:monitor.py:280 - Index: aci.db [32mINFO [0m LogCapture:monitor.py:281 - Cache Hit: 1 [32mINFO [0m LogCapture:monitor.py:282 - Cache Miss: 2 [32mINFO [0m LogCapture:monitor.py:283 - Page In: 2 [32mINFO [0m LogCapture:monitor.py:284 - Page Out: 0 [32mINFO [0m LogCapture:monitor.py:285 [32mINFO [0m LogCapture:monitor.py:280 - Index: entryrdn.db [32mINFO [0m LogCapture:monitor.py:281 - Cache Hit: 5 [32mINFO [0m LogCapture:monitor.py:282 - Cache Miss: 2 [32mINFO [0m LogCapture:monitor.py:283 - Page In: 2 [32mINFO [0m LogCapture:monitor.py:284 - Page Out: 0 [32mINFO [0m LogCapture:monitor.py:285 [32mINFO [0m LogCapture:monitor.py:280 - Index: objectclass.db [32mINFO [0m LogCapture:monitor.py:281 - Cache Hit: 11 [32mINFO [0m LogCapture:monitor.py:282 - Cache Miss: 2 [32mINFO [0m LogCapture:monitor.py:283 - Page In: 2 [32mINFO [0m LogCapture:monitor.py:284 - Page Out: 0 [32mINFO [0m LogCapture:monitor.py:285 [32mINFO [0m LogCapture:monitor.py:280 - Index: id2entry.db [32mINFO [0m LogCapture:monitor.py:281 - Cache Hit: 2 [32mINFO [0m LogCapture:monitor.py:282 - Cache Miss: 2 [32mINFO [0m LogCapture:monitor.py:283 - Page In: 2 [32mINFO [0m LogCapture:monitor.py:284 - Page Out: 0 [32mINFO [0m LogCapture:monitor.py:285 [32mINFO [0m LogCapture:monitor.py:286 [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:179 Sanity check for --json output [32mINFO [0m LogCapture:monitor.py:245 { "date": "2020-09-29 19:43:35", "dbcache": { "hit_ratio": "70", "free": "487.05 MB", "free_percentage": "100.0", "roevicts": "0", "pagein": "8", "pageout": "0" }, "ndncache": { "hit_ratio": "78", "free": "19.99 MB", "free_percentage": "100.0", "count": "54", "evictions": "0" }, "backends": { "userRoot": { "suffix": "dc=example,dc=com", "entry_cache_count": "2", "entry_cache_free": "1.31 GB", "entry_cache_free_percentage": "100.0", "entry_cache_size": "3.78 KB", "entry_cache_hit_ratio": "57", "dn_cache_count": "2", "dn_cache_free": "192.0 MB", "dn_cache_free_percentage": "100.0", "dn_cache_size": "63.0 B", "dn_cache_hit_ratio": "0", "indexes": [ { "name": "aci.db", "cachehit": "1", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "entryrdn.db", "cachehit": "5", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "objectclass.db", "cachehit": "11", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "id2entry.db", "cachehit": "2", "cachemiss": "2", "pagein": "2", "pageout": "0" } ] } } } [32mINFO [0m tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log | |||
Passed | suites/clu/dbverify_test.py::test_dsctl_dbverify | 2.54 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ [29/Sep/2020:19:43:44.602737283 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.dbverify_test:dbverify_test.py:63 Run dbverify [32mINFO [0m tests.suites.clu.dbverify_test:dbtasks.py:88 dbverify successful [32mINFO [0m tests.suites.clu.dbverify_test:dbverify_test.py:67 Check dbverify was successful | |||
Passed | suites/clu/fixup_test.py::test_posix_winsync_fixup | 8.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.fixup_test:fixup_test.py:73 Enable POSIXWinsyncPlugin [32mINFO [0m tests.suites.clu.fixup_test:fixup_test.py:77 Stopping the server and importing posix accounts [32mINFO [0m tests.suites.clu.fixup_test:fixup_test.py:87 Run Fixup task [32mINFO [0m tests.suites.clu.fixup_test:posix_winsync.py:29 Attempting to add task entry... [32mINFO [0m tests.suites.clu.fixup_test:posix_winsync.py:39 Successfully added task entry [32mINFO [0m tests.suites.clu.fixup_test:fixup_test.py:90 Check log if fixup task was successful | |||
Passed | suites/clu/repl_monitor_test.py::test_dsconf_replication_monitor | 0.68 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 792d4b2e-0239-4ebd-bd1a-c0985a1c167e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d0dfcae1-00fd-4728-ac07-324c4f41d565 / got description=792d4b2e-0239-4ebd-bd1a-c0985a1c167e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:170 Run replication monitor with connections option [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:204 dsrc completed with {'connections': None, 'aliases': None} [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ----------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 1 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d0000000010000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ----------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 2 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d1000000020000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "Supplier: ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001" [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:174 Run replication monitor with aliases option [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:204 dsrc completed with {'connections': None, 'aliases': None} [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: M1 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001) [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ---------------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 1 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d0000000010000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: M2 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002) [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ---------------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 2 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d1000000020000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "['Supplier: M1 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001)', 'Supplier: M2 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002)']" [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:179 Run replication monitor with --json option [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:204 dsrc completed with {'connections': None, 'aliases': None} [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:470 { "type": "list", "items": [ { "name": "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001", "data": [ { "replica_id": "1", "replica_root": "dc=example,dc=com", "replica_status": "Available", "maxcsn": "5f73c6d0000000010000", "agmts_status": [ { "agmt-name": [ "002" ], "replica": [ "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002" ], "replica-enabled": [ "on" ], "update-in-progress": [ "FALSE" ], "last-update-start": [ "20200929234417Z" ], "last-update-end": [ "20200929234417Z" ], "number-changes-sent": [ "1:2/0 " ], "number-changes-skipped": [ "unavailable" ], "last-update-status": [ "Error (0) Replica acquired successfully: Incremental update succeeded" ], "last-init-start": [ "19700101000000Z" ], "last-init-end": [ "19700101000000Z" ], "last-init-status": [ "unavailable" ], "reap-active": [ "0" ], "replication-status": [ "In Synchronization" ], "replication-lag-time": [ "00:00:00" ] } ] } ] }, { "name": "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002", "data": [ { "replica_id": "2", "replica_root": "dc=example,dc=com", "replica_status": "Available", "maxcsn": "5f73c6d1000000020000", "agmts_status": [ { "agmt-name": [ "001" ], "replica": [ "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001" ], "replica-enabled": [ "on" ], "update-in-progress": [ "FALSE" ], "last-update-start": [ "20200929234417Z" ], "last-update-end": [ "20200929234417Z" ], "number-changes-sent": [ "2:1/0 " ], "number-changes-skipped": [ "unavailable" ], "last-update-status": [ "Error (0) Replica acquired successfully: Incremental update succeeded" ], "last-init-start": [ "19700101000000Z" ], "last-init-end": [ "19700101000000Z" ], "last-init-status": [ "unavailable" ], "reap-active": [ "0" ], "replication-status": [ "In Synchronization" ], "replication-lag-time": [ "00:00:00" ] } ] } ] } ] } [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "type" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "list" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "items" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "name" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "data" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_id": "1"" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_root": "dc=example,dc=com"" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_status": "Available"" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "maxcsn" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "agmts_status" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "agmt-name" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "002" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replica" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replica-enabled" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "update-in-progress" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-start" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-end" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "number-changes-sent" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "number-changes-skipped" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-status" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Error (0) Replica acquired successfully: Incremental update succeeded" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-start" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-end" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-status" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "reap-active" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replication-status" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "In Synchronization" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replication-lag-time" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_id": "2"" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "001" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:192 Run replication monitor when .dsrc file is present with content [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: ['repl-monitor-connections', 'repl-monitor-aliases'] [35mDEBUG [0m tests.suites.clu.repl_monitor_test:dsrc.py:204 dsrc completed with {'connections': ['ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001:cn=Directory Manager:password', 'ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002:cn=Directory Manager:password'], 'aliases': {'M1': 'ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001', 'M2': 'ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002'}} [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: M1 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001) [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ---------------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 1 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d0000000010000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:440 Supplier: M2 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002) [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:445 ---------------------------------------------------------------------- [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:457 Replica Root: dc=example,dc=com [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:458 Replica ID: 2 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:459 Replica Status: Available [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:460 Max CSN: 5f73c6d1000000020000 [32mINFO [0m tests.suites.clu.repl_monitor_test:replication.py:463 Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20200929234417Z Last Update End: 20200929234417Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001)" is present [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "['Supplier: M1 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001)', 'Supplier: M2 (ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002)']" [32mINFO [0m tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file | |||
Passed | suites/config/autotuning_test.py::test_threads_basic | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:39 Set nsslapd-threadnumber: -1 to enable autotuning [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:42 Assert nsslapd-threadnumber is equal to the documented expected value | |||
Passed | suites/config/autotuning_test.py::test_threads_warning | 1.08 | |
No log output captured. | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[-2] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: -2. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[0] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: 0. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[invalid] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: invalid. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_back_from_manual_value | 0.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:109 Set nsslapd-threadnumber: -1 to enable autotuning and save the new value [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:113 Set nsslapd-threadnumber to the autotuned value decreased by 2 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:118 Set nsslapd-threadnumber: -1 to enable autotuning [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:121 Assert nsslapd-threadnumber is back to the autotuned value | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-] | 3.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'201326592' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-0] | 4.84 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'201326592' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-400] | 4.77 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'261516820' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-40] | 5.51 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'261516820' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'817240064' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1140850688' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'134217728' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-] | 4.81 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'817240064' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1140850688' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'134217728' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'163448012' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-401] | 4.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'163448012' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'261516820' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-0] | 4.66 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'261516820' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'163448012' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[0] | 9.88 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'163448012' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[] | 9.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'408620032' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1409286144' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[40] | 9.69 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'817240064' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1140850688' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'817240064' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1140850688' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[-2] | 0.77 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to -2 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to -2 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[102] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to 102 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to 102 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[invalid] | 0.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to invalid [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to invalid | |||
Passed | suites/config/config_test.py::test_maxbersize_repl | 15.78 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 702562c1-a337-4f49-91c0-1246391e5905 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 4bc0b0e3-75d3-4119-8cb2-6bbee1cbf720 / got description=702562c1-a337-4f49-91c0-1246391e5905) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:69 Set nsslapd-maxbersize: 20K to master2 [32mINFO [0m tests.suites.config.config_test:config_test.py:74 Try to add attribute with a big value to master2 - expect to FAIL [32mINFO [0m tests.suites.config.config_test:config_test.py:81 Try to add attribute with a big value to master1 - expect to PASS [32mINFO [0m tests.suites.config.config_test:config_test.py:86 Check if a big value was successfully added to master1 [32mINFO [0m tests.suites.config.config_test:config_test.py:90 Check if a big value was successfully replicated to master2 | |||
Passed | suites/config/config_test.py::test_config_listen_backport_size | 0.03 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_config_deadlock_policy | 0.08 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_defaultnamingcontext | 1.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:220 Check the attribute nsslapd-defaultnamingcontext is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:223 Delete nsslapd-defaultnamingcontext attribute [32mINFO [0m tests.suites.config.config_test:config_test.py:230 modify nsslapd-defaultnamingcontext with new suffix [32mINFO [0m tests.suites.config.config_test:config_test.py:233 Add new invalid value at runtime to nsslapd-defaultnamingcontext [32mINFO [0m tests.suites.config.config_test:config_test.py:237 Modify nsslapd-defaultnamingcontext with blank value [32mINFO [0m tests.suites.config.config_test:config_test.py:240 Add new suffix when nsslapd-defaultnamingcontext is empty [32mINFO [0m tests.suites.config.config_test:config_test.py:244 Check the value of the nsslapd-defaultnamingcontext automatically have the new suffix [32mINFO [0m tests.suites.config.config_test:config_test.py:247 Adding new suffix when nsslapd-defaultnamingcontext is not empty [32mINFO [0m tests.suites.config.config_test:config_test.py:251 Check the value of the nsslapd-defaultnamingcontext has not changed [32mINFO [0m tests.suites.config.config_test:config_test.py:254 Remove the newly added suffix and check the values of the attribute is not changed [32mINFO [0m tests.suites.config.config_test:config_test.py:258 Remove all the suffix at the end | |||
Passed | suites/config/config_test.py::test_allow_add_delete_config_attributes | 4.89 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:308 Add a new valid attribute at runtime to cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:312 Delete nsslapd-listenhost to restore the default value [32mINFO [0m tests.suites.config.config_test:config_test.py:317 Add new invalid attribute at runtime to cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:321 Make sure the invalid attribute is not added | |||
Passed | suites/config/config_test.py::test_ignore_virtual_attrs | 0.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:354 Check the attribute nsslapd-ignore-virtual-attrs is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:357 Check the default value of attribute nsslapd-ignore-virtual-attrs should be OFF [32mINFO [0m tests.suites.config.config_test:config_test.py:360 Set the valid values i.e. on/ON and off/OFF for nsslapd-ignore-virtual-attrs [32mINFO [0m tests.suites.config.config_test:config_test.py:365 Set invalid value for attribute nsslapd-ignore-virtual-attrs [32mINFO [0m tests.suites.config.config_test:config_test.py:376 Add cosPointer, cosTemplate and test entry to default suffix, where virtual attribute is postal code [32mINFO [0m tests.suites.config.config_test:config_test.py:389 Test if virtual attribute i.e. postal code shown in test entry while nsslapd-ignore-virtual-attrs: off [32mINFO [0m tests.suites.config.config_test:config_test.py:392 Set nsslapd-ignore-virtual-attrs=on [32mINFO [0m tests.suites.config.config_test:config_test.py:395 Test if virtual attribute i.e. postal code not shown while nsslapd-ignore-virtual-attrs: on | |||
Passed | suites/config/config_test.py::test_ndn_cache_enabled | 9.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:423 Check the attribute nsslapd-ndn-cache-enabled is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:426 Check the attribute nsslapd-ndn-cache-enabled has the default value set as ON [32mINFO [0m tests.suites.config.config_test:config_test.py:429 Check the attribute nsslapd-ndn-cache-max-size is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:435 Ticket#49593 : NDN cache stats should be under the global stats - Implemented in 1.4 [32mINFO [0m tests.suites.config.config_test:config_test.py:436 Fetch the monitor value according to the ds version [32mINFO [0m tests.suites.config.config_test:config_test.py:442 Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is off [32mINFO [0m tests.suites.config.config_test:config_test.py:448 Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is on [32mINFO [0m tests.suites.config.config_test:config_test.py:454 Set invalid value for nsslapd-ndn-cache-enabled [32mINFO [0m tests.suites.config.config_test:config_test.py:458 Set invalid value for nsslapd-ndn-cache-max-size | |||
Passed | suites/config/config_test.py::test_require_index | 1.12 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_require_internal_index | 5.75 | |
No log output captured. | |||
Passed | suites/config/regression_test.py::test_maxbersize_repl | 7.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.regression_test:regression_test.py:100 Set nsslapd-errorlog-maxlogsize before nsslapd-errorlog-logmaxdiskspace [32mINFO [0m tests.suites.config.regression_test:regression_test.py:104 Assert no init_dse_file errors in the error log [32mINFO [0m tests.suites.config.regression_test:regression_test.py:108 Set nsslapd-errorlog-maxlogsize after nsslapd-errorlog-logmaxdiskspace [32mINFO [0m tests.suites.config.regression_test:regression_test.py:112 Assert no init_dse_file errors in the error log | |||
Passed | suites/config/removed_config_49298_test.py::test_restore_config | 3.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.removed_config_49298_test:removed_config_49298_test.py:43 /etc/dirsrv/slapd-standalone1 | |||
Passed | suites/config/removed_config_49298_test.py::test_removed_config | 2.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.removed_config_49298_test:removed_config_49298_test.py:72 /etc/dirsrv/slapd-standalone1 | |||
Passed | suites/cos/cos_test.py::test_positive | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/cos/indirect_cos_test.py::test_indirect_cos | 1.54 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:107 Add custom schema... [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:120 Add test user... [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:137 Setup indirect COS... -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:157 Checking user... [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:56 Create password policy for subtree ou=people,dc=example,dc=com [32mINFO [0m tests.suites.cos.indirect_cos_test:indirect_cos_test.py:164 Checking user... | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_verify_operation_when_disk_monitoring_is_off | 4.74 | |
-----------------------------Captured stdout setup------------------------------ Relabeled /var/log/dirsrv/slapd-standalone1 from unconfined_u:object_r:user_tmp_t:s0 to system_u:object_r:dirsrv_var_log_t:s0 -----------------------------Captured stderr setup------------------------------ chown: cannot access '/var/log/dirsrv/slapd-standalone1/*': No such file or directory -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ 25+0 records in 25+0 records out 26214400 bytes (26 MB, 25 MiB) copied, 0.0358271 s, 732 MB/s dd: error writing '/var/log/dirsrv/slapd-standalone1/foo1': No space left on device 10+0 records in 9+0 records out 10465280 bytes (10 MB, 10 MiB) copied, 0.0158426 s, 661 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_free_up_the_disk_space_and_change_ds_config | 4.43 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_verify_operation_with_nsslapd_disk_monitoring_logging_critical_off | 34.69 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0103767 s, 1.0 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_on_below_half_of_the_threshold | 25.50 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0325637 s, 998 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_setting_nsslapd_disk_monitoring_logging_critical_to_off | 3.48 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off | 74.78 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0124035 s, 845 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off_below_half_of_the_threshold | 165.80 | |
------------------------------Captured stderr call------------------------------ 30+0 records in 30+0 records out 31457280 bytes (31 MB, 30 MiB) copied, 0.0328549 s, 957 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_half_of_the_threshold | 107.84 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.041463 s, 784 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_readonly_on_threshold | 28.29 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0136061 s, 771 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_readonly_on_threshold_below_half_of_the_threshold | 50.06 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0228773 s, 1.4 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_below_half_of_the_threshold_not_starting_after_shutdown | 112.54 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0141973 s, 2.3 GB/s -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:disk_monitoring_test.py:582 Instance start up has failed as expected | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_4kb | 18.30 | |
------------------------------Captured stderr call------------------------------ 25+0 records in 25+0 records out 26214400 bytes (26 MB, 25 MiB) copied, 0.031364 s, 836 MB/s dd: error writing '/var/log/dirsrv/slapd-standalone1/foo1': No space left on device 10+0 records in 9+0 records out 10178560 bytes (10 MB, 9.7 MiB) copied, 0.00486104 s, 2.1 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_threshold_to_overflow_value | 0.05 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_threshold_is_reached_to_half | 14.49 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.00481686 s, 2.2 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold--2] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold-9223372036854775808] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold-2047] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold-0] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold--1294967296] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-threshold-invalid] | 0.17 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-invalid] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-1] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-grace-period-00] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-grace-period-525 948] | 0.01 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-grace-period--10] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-logging-critical-oninvalid] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-grace-period--11] | 0.15 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_negagtive_parameterize[nsslapd-disk-monitoring-grace-period-01] | 0.00 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_valid_operations_are_permitted | 3.93 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_space_test.py::test_basic | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:disk_space_test.py:37 Check that "partition", "size", "used", "available", "use%" words are present in the string [32mINFO [0m lib389:disk_space_test.py:41 Check that the sizes are numbers | |||
Passed | suites/ds_logs/ds_logs_test.py::test_check_default | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:233 on | |||
Passed | suites/ds_logs/ds_logs_test.py::test_plugin_set_invalid | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:252 test_plugin_set_invalid - Expect to fail with junk value | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_on | 4.74 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:279 Bug 1273549 - Check access logs for millisecond, when attribute is ON [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:280 perform any ldap operation, which will trigger the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 10 users [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:284 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:287 parse the access logs | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_off | 12.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:319 Bug 1273549 - Check access logs for missing millisecond, when attribute is OFF [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:321 test_log_plugin_off - set the configuration attribute to OFF [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:324 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:327 test_log_plugin_off - delete the previous access logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 10 users [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:334 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:337 check access log that microseconds are not present | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_0 | 4.52 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:365 Set nsslapd-plugin-logging to on [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:368 Configure access log level to 0 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:372 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:376 Check if access log does not contain internal log of MOD operation [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:382 Check if the other internal operations are not present | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_4 | 6.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:414 Set nsslapd-plugin-logging to on [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:417 Configure access log level to 4 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:421 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:426 Check if access log contains internal MOD operation in correct format [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:432 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_260 | 6.69 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:102 Enable automember plugin [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:106 Enable Referential Integrity plugin [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:110 Set nsslapd-plugin-logging to on [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:113 Restart the server [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 260 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:472 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:476 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:492 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:506 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:518 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_131076 | 6.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 131076 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:557 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:561 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:577 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:591 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:603 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_516 | 7.19 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 516 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:642 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:646 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:665 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:682 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:697 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_access_log_truncated_search_message | 4.80 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:724 Make a search [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:727 Restart the server to flush the logs | |||
Passed | suites/ds_logs/ds_logs_test.py::test_etime_at_border_of_second | 22.20 | |
No log output captured. | |||
Passed | suites/ds_logs/ds_logs_test.py::test_etime_order_of_magnitude | 2.92 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:814 add_users [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 30 users [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:817 search users [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:820 parse the access logs to get the SRCH string [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:828 get the operation start time from the SRCH string [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:832 get the OP number from the SRCH string [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:836 get the RESULT string matching the SRCH OP number [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:844 get the operation end time from the RESULT string [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:848 get the logged etime for the operation from the RESULT string [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:852 Calculate the ratio between logged etime for the operation and elapsed time from its start time to its end time - should be around 1 | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_base_dn_when_invalid_attr_request | 3.79 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:884 delete the previous access logs to get a fresh new one [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:887 Search the default suffix, with invalid '"" ""' attribute request [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:888 A Protocol error exception should be raised, see https://github.com/389ds/389-ds-base/issues/3028 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:894 Check the access logs for correct messages | |||
Passed | suites/ds_logs/ds_logs_test.py::test_audit_log_rotate_and_check_string | 12.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:940 Doing modifications to rotate audit log [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:945 Doing one more modification just in case [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:952 Check that DS string is present on first line [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:956 Check that DS string is present only once | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[24576] | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16512] | 0.27 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16385] | 1.17 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_dse_config_loglevel_error | 14.59 | |
No log output captured. | |||
Passed | suites/ds_tools/logpipe_test.py::test_user_permissions | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.ds_tools.logpipe_test:logpipe_test.py:32 Add system test user - dirsrv_testuser -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_tools.logpipe_test:logpipe_test.py:68 Try to create a logpipe in the log directory with "-u" option specifying the user | |||
Passed | suites/ds_tools/replcheck_test.py::test_state | 0.54 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 57f4d105-46f6-43dc-a50e-959b8574d3a5 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8acd7f7a-0154-4b81-abe9-c12fd70388f0 / got description=57f4d105-46f6-43dc-a50e-959b8574d3a5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect e92ef8bb-c435-4896-979d-228682782c00 / got description=8acd7f7a-0154-4b81-abe9-c12fd70388f0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m tests.suites.ds_tools.replcheck_test:replcheck_test.py:101 Export LDAPTLS_CACERTDIR env variable for ds-replcheck [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect aad6f2a6-4638-43ba-8dd4-a188fed80b1d / got description=e92ef8bb-c435-4896-979d-228682782c00) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect d3a01860-b539-4b65-a388-a1b43c7a48d1 / got description=aad6f2a6-4638-43ba-8dd4-a188fed80b1d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working | |||
Passed | suites/ds_tools/replcheck_test.py::test_check_ruv | 17.78 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_missing_entries | 19.10 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_tombstones | 23.19 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_conflict_entries | 29.59 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_inconsistencies | 21.87 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_suffix_exists | 0.51 | |
No log output captured. | |||
Passed | suites/ds_tools/replcheck_test.py::test_check_missing_tombstones | 19.43 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif | |||
Passed | suites/ds_tools/replcheck_test.py::test_dsreplcheck_with_password_file | 0.01 | |
No log output captured. | |||
Passed | suites/ds_tools/replcheck_test.py::test_dsreplcheck_timeout_connection_mechanisms | 1.52 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_tools.replcheck_test:replcheck_test.py:535 Run ds-replcheck with -t option | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_acceptance | 42.96 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0bec4816-bd21-4c88-865d-996495606d79 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect dc7a3f48-8b7a-4f0a-9a0a-abaf17570a44 / got description=0bec4816-bd21-4c88-865d-996495606d79) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 95acc3e5-3f9d-4889-ab4b-3c1e153b1cfc / got description=dc7a3f48-8b7a-4f0a-9a0a-abaf17570a44) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 42228036-e973-40a5-92bf-e5dbfef8d07d / got description=95acc3e5-3f9d-4889-ab4b-3c1e153b1cfc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_memory_corruption | 44.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f73bc441-c4d2-4e56-bfd7-8bb42bf2a3b9 / got description=42228036-e973-40a5-92bf-e5dbfef8d07d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 3c540302-3ba8-43dc-894f-bc1d5fae961f / got description=f73bc441-c4d2-4e56-bfd7-8bb42bf2a3b9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_stress | 698.86 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect df8b070a-6aff-4130-ab6c-5e0a4c50f498 / got description=3c540302-3ba8-43dc-894f-bc1d5fae961f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect df8b070a-6aff-4130-ab6c-5e0a4c50f498 / got description=3c540302-3ba8-43dc-894f-bc1d5fae961f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ac349453-09f0-4005-bd3b-b20c94aa5034 / got description=df8b070a-6aff-4130-ab6c-5e0a4c50f498) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/export/export_test.py::test_dbtasks_db2ldif_with_non_accessible_ldif_file_path | 4.79 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ ldiffile: /tmp/nonexistent/export.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:export_test.py:63 Stopping the instance... [32mINFO [0m lib389.utils:export_test.py:66 Performing an offline export to a non accessible ldif file path - should fail properly [31mCRITICAL[0m LogCapture:dbtasks.py:40 db2ldif failed [32mINFO [0m lib389.utils:export_test.py:33 checking output msg [32mINFO [0m lib389.utils:export_test.py:38 Clear the log [32mINFO [0m lib389.utils:export_test.py:70 parsing the errors log to search for the error reported [32mINFO [0m lib389.utils:export_test.py:79 Restarting the instance... | |||
Passed | suites/export/export_test.py::test_db2ldif_cli_with_non_accessible_ldif_file_path | 3.85 | |
------------------------------Captured stdout call------------------------------ Exported ldif file: /tmp/nonexistent/export.ldif ------------------------------Captured stderr call------------------------------ [29/Sep/2020:20:18:34.798365884 -0400] - INFO - slapd_exemode_db2ldif - db2ldif - Backend Instance(s): [29/Sep/2020:20:18:34.804165864 -0400] - INFO - slapd_exemode_db2ldif - db2ldif - userRoot ldiffile: /tmp/nonexistent/export.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:export_test.py:104 Stopping the instance... [32mINFO [0m lib389.utils:export_test.py:107 Performing an offline export to a non accessible ldif file path - should fail properly [32mINFO [0m lib389.utils:export_test.py:115 db2ldif failed properly: error (255) [32mINFO [0m lib389.utils:export_test.py:118 parsing the errors log to search for the error reported [32mINFO [0m lib389.utils:export_test.py:121 error string : '[29/Sep/2020:20:18:30.831337357 -0400] - ERR - bdb_db2ldif - db2ldif: userRoot: can\'t open /tmp/nonexistent/export.ldif: 2 (No such file or directory) while running as user "dirsrv"\n', '[29/Sep/2020:20:18:34.823893469 -0400] - ERR - bdb_db2ldif - db2ldif: userRoot: can\'t open /tmp/nonexistent/export.ldif: 2 (No such file or directory) while running as user "dirsrv"\n' [32mINFO [0m lib389.utils:export_test.py:123 Restarting the instance... | |||
Passed | suites/filter/basic_filter_test.py::test_search_attr | 0.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/bitw_filter_test.py::test_bitwise_plugin_status | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/bitw_filter_test.py::test_search_disabled_accounts | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_plugin_can_be_disabled | 3.78 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_plugin_is_disabled | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_enabling_works_fine | 4.34 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=513))-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=16777216))-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=8388608))-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=5))-3] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=8))-3] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=7))-5] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testerperson) (testUserAccountControl:1.2.840.113556.1.4.804:=7))-0] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (&(testUserAccountControl:1.2.840.113556.1.4.803:=98536)(testUserAccountControl:1.2.840.113556.1.4.803:=912)))-0] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (&(testUserAccountControl:1.2.840.113556.1.4.804:=87)(testUserAccountControl:1.2.840.113556.1.4.804:=91)))-8] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (&(testUserAccountControl:1.2.840.113556.1.4.803:=89536)(testUserAccountControl:1.2.840.113556.1.4.804:=79)))-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (|(testUserAccountControl:1.2.840.113556.1.4.803:=89536)(testUserAccountControl:1.2.840.113556.1.4.804:=79)))-8] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (|(testUserAccountControl:1.2.840.113556.1.4.803:=89)(testUserAccountControl:1.2.840.113556.1.4.803:=536)))-0] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=x))-13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=&\*#$%))-13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=-65536))-0] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=-1))-0] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=-))-13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=))-13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=\*))-13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=\*))-0] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=6552))-0] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson\))(testUserAccountControl:1.2.840.113556.1.4.804:=6552))-0] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=65536))-5] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries | 0.52 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries1 | 0.24 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries3 | 0.02 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries4 | 0.02 | |
No log output captured. | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(sn=last1)(givenname=first1))-1] | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(sn=last1)(givenname=first1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(sn=last1)(givenname=first1)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(sn=last1)(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(&(sn=last1))(&(givenname=first1))))-1] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(&(sn=last1))(&(givenname=first1))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(sn=last3)(givenname=*))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=*)(sn=last3)(givenname=*))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(&(sn=last3)(givenname=*)))-1] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=*)(&(sn=last3)(givenname=*)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid5)(&(&(sn=*))(&(givenname=*))))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid5)(&(&(sn=*))(&(givenname=*))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(objectclass=*)(uid=*)(sn=last*))-5] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(objectclass=*)(uid=*)(sn=last*))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(objectclass=*)(uid=*)(sn=last1))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(objectclass=*)(uid=*)(sn=last1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=uid1)(sn=last1)(givenname=first1))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=uid1)(sn=last1)(givenname=first1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=uid1)(|(sn=last1)(givenname=first1)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=uid1)(|(sn=last1)(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=uid1)(|(|(sn=last1))(|(givenname=first1))))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=uid1)(|(|(sn=last1))(|(givenname=first1))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(objectclass=*)(sn=last1)(|(givenname=first1)))-14] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(objectclass=*)(sn=last1)(|(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(objectclass=*)(sn=last1))(|(givenname=first1)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(objectclass=*)(sn=last1))(|(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(objectclass=*)(sn=last))(|(givenname=first1)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(objectclass=*)(sn=last))(|(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(!(cn=NULL)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(!(cn=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(!(cn=NULL))(uid=uid1))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(!(cn=NULL))(uid=uid1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(&(!(uid=1))(!(givenname=first1))))-4] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=*)(&(!(uid=1))(!(givenname=first1))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(|(uid=uid1)(uid=NULL))(sn=last1))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(|(uid=uid1)(uid=NULL))(sn=last1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(|(uid=uid1)(uid=NULL))(!(sn=NULL)))-1] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(|(uid=uid1)(uid=NULL))(!(sn=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(|(uid=uid1)(sn=last2))(givenname=first1))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(|(uid=uid1)(sn=last2))(givenname=first1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(uid=uid1)(!(uid=NULL)))(sn=last2))-2] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(uid=uid1)(!(uid=NULL)))(sn=last2))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(uid=uid1)(uid=NULL))(sn=last2))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(uid=uid1)(uid=NULL))(sn=last2))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid5)(sn=*)(cn=*)(givenname=*)(uid=u*)(sn=la*)(cn=full*)(givenname=f*)(uid>=u)(!(givenname=NULL)))-1] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid5)(sn=*)(cn=*)(givenname=*)(uid=u*)(sn=la*)(cn=full*)(givenname=f*)(uid>=u)(!(givenname=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(objectclass=*)(sn=last))(&(givenname=first1)))-1] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(objectclass=*)(sn=last))(&(givenname=first1)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(sn=last1)(givenname=NULL))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(sn=last1)(givenname=NULL))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(sn=last1)(givenname=NULL)))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(sn=last1)(givenname=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(&(sn=last1))(&(givenname=NULL))))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(&(sn=last1))(&(givenname=NULL))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(&(sn=last1))(&(givenname=NULL)(sn=*)))(|(sn=NULL)))-0] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(&(sn=last1))(&(givenname=NULL)(sn=*)))(|(sn=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(&(sn=last*))(&(givenname=first*)))(&(sn=NULL)))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(&(sn=last*))(&(givenname=first*)))(&(sn=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=NULL)(sn=NULL)(givenname=NULL))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=NULL)(sn=NULL)(givenname=NULL))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=NULL)(|(sn=NULL)(givenname=NULL)))-0] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=NULL)(|(sn=NULL)(givenname=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=NULL)(|(|(sn=NULL))(|(givenname=NULL))))-0] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=NULL)(|(|(sn=NULL))(|(givenname=NULL))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*))-5] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(uid>=uid3)-3] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(uid>=uid3)"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(uid>=uid3))-3] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=*)(uid>=uid3))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid>=uid3)(uid<=uid5))-5] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid>=uid3)(uid<=uid5))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid>=uid3)(uid<=uid5))-3] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid>=uid3)(uid<=uid5))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(uid>=uid3)(uid<=uid5))(uid=*))-5] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(uid>=uid3)(uid<=uid5))(uid=*))"... | |||
Passed | suites/filter/filter_cert_test.py::test_positive | 24.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index0] | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index2] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index3] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index4] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index5] | 0.26 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index7] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index8] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index9] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index10] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index11] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index12] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index14] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index15] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index16] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index17] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod0] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod1] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod2] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod3] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod4] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod5] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod6] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod7] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod8] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod9] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod10] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod11] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod12] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod13] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod14] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod15] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod16] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod17] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode0] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode1] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode2] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode3] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode4] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode5] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode6] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode7] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode8] | 0.30 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode9] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode10] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode11] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode12] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode13] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode14] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode15] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode16] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode17] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode0] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode1] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode2] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode3] | 0.27 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode4] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode5] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode6] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode7] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode8] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode9] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode10] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode11] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode12] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode13] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode14] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode15] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode16] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode17] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_search_positive_negative | 0.13 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrbitStringMatch:bitStringMatch:='0001'B)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactIA5Match:caseExactIA5Match:=Sprain)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch:caseExactMatch:=ÇélIné Ändrè)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch:caseExactOrderingMatch:=ÇélIné Ändrè)-5] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeMatch:=20100218171300Z)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeOrderingMatch:=20100218171300Z)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrbooleanMatch:booleanMatch:=TRUE)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match:caseIgnoreIA5Match:=sprain1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch:caseIgnoreMatch:=ÇélIné Ändrè1)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch:caseIgnoreOrderingMatch:=ÇélIné Ändrè1)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch:caseIgnoreListMatch:=foo1$bar)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrobjectIdentifierMatch:objectIdentifierMatch:=1.3.6.1.4.1.1466.115.121.1.15)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrdirectoryStringFirstComponentMatch:directoryStringFirstComponentMatch:=ÇélIné Ändrè1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrobjectIdentifierFirstComponentMatch:objectIdentifierFirstComponentMatch:=1.3.6.1.4.1.1466.115.121.1.15)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrdistinguishedNameMatch:distinguishedNameMatch:=cn=foo1,cn=bar)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerMatch:integerMatch:=-2)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerMatch:integerOrderingMatch:=-2)-6] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerFirstComponentMatch:integerFirstComponentMatch:=-2)-1] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attruniqueMemberMatch:uniqueMemberMatch:=cn=foo1,cn=bar#'0001'B)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-10] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-11] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch:telephoneNumberMatch:=+1 408 555 4798)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attroctetStringMatch:octetStringMatch:=AAAAAAAAAAAAAAE=)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attroctetStringMatch:octetStringOrderingMatch:=AAAAAAAAAAAAAAE=)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=*ÇélIné Ändrè*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=ÇélIné Ändrè*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=*ÇélIné Ändrè)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=*é Ä*)-5] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactIA5Match=*Sprain*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactIA5Match=Sprain*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactIA5Match=*Sprain)-1] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactIA5Match=*rai*)-3] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*sprain1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=sprain1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*sprain1)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*rai*)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=ÇélIné Ändrè1*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*é Ä*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar)-1] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*1$b*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=*00001*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=00001*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=*00001)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=*000*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=+1 408 555 4798*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=* 55*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=nothing1)(ou=people))(|(ou=nothing2)(ou=nothing3)))] | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=people)(ou=nothing1))(|(ou=nothing2)(ou=nothing3)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=nothing1)(ou=nothing2))(|(ou=people)(ou=nothing3)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=nothing1)(ou=nothing2))(|(ou=nothing3)(ou=people)))] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(&(sn<=0000000000000000)(givenname>=FFFFFFFFFFFFFFFF))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(&(sn>=0000000000000000)(sn<=1111111111111111))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_positive[(&(sn>=0000000000000000)(givenname<=FFFFFFFFFFFFFFFF))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_schema | 3.45 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(uidNumber=18446744073709551617)] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(gidNumber=18446744073709551617)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(MYINTATTR=18446744073709551617)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(uidNumber=*)(!(uidNumber=18446744073709551617)))] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(gidNumber=*)(!(gidNumber=18446744073709551617)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(uidNumber=*)(!(gidNumber=18446744073709551617)))] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(myintattr=*)(!(myintattr=18446744073709551617)))] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(uidNumber>=-18446744073709551617)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(gidNumber>=-18446744073709551617)] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(uidNumber<=18446744073709551617)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(gidNumber<=18446744073709551617)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(myintattr<=18446744073709551617)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber=54321)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber=54321)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr=54321)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber<=-999999999999999999999999999999)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber<=-999999999999999999999999999999)] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr<=-999999999999999999999999999999)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber>=999999999999999999999999999999)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber>=999999999999999999999999999999)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr>=999999999999999999999999999999)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_eq | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_logic_test.py::test_sub | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_not_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_ranges | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_eq | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_range | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_allid_shortcut | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_eq | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_not_eq | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_not_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_range | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_range | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_and_eq | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_or_eq | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_or_eq | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_and_eq | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_matching_rules | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_match_test.py::test_add_attribute_types | 1.97 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule2] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule3] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule4] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule5] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule7] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule8] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule9] | 0.16 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule10] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule11] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule12] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule13] | 0.05 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule14] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule15] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule16] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule17] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode0] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode1] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode2] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode3] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode4] | 0.28 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode5] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode6] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode7] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode8] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode9] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode10] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode11] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode12] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode13] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode14] | 0.13 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode15] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode16] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode17] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode0] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode1] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode2] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode3] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode4] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode5] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode6] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode7] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode8] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode9] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode10] | 0.31 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode11] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode12] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode13] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode14] | 0.07 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode15] | 0.06 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode16] | 0.09 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode17] | 0.29 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrbitStringMatch='0001'B)-1-(attrbitStringMatch:bitStringMatch:='000100000'B)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrgeneralizedTimeMatch=20100218171300Z)-1-(attrcaseExactIA5Match=SPRAIN)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseExactMatch>=ÇélIné Ändrè)-5-(attrcaseExactMatch=ÇéLINé ÄNDRè)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseExactMatch:caseExactMatch:=ÇélIné Ändrè)-1-(attrcaseExactMatch>=çéliné ändrè)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseExactIA5Match=Sprain)-1-(attrgeneralizedTimeMatch=20300218171300Z)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrbooleanMatch=TRUE)-1-(attrgeneralizedTimeMatch>=20300218171300Z)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreIA5Match=sprain1)-1-(attrcaseIgnoreIA5Match=sprain9999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreMatch=ÇélIné Ändrè1)-1-(attrcaseIgnoreMatch=ÇélIné Ändrè9999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreMatch>=ÇélIné Ändrè1)-6-(attrcaseIgnoreMatch>=ÇélIné Ändrè9999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreListMatch=foo1$bar)-1-(attrcaseIgnoreListMatch=foo1$bar$baz$biff)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrobjectIdentifierMatch=1.3.6.1.4.1.1466.115.121.1.15)-1-(attrobjectIdentifierMatch=1.3.6.1.4.1.1466.115.121.1.15.99999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrgeneralizedTimeMatch>=20100218171300Z)-6-(attroctetStringMatch>=AAAAAAAAAAABAQQ=)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrdirectoryStringFirstComponentMatch=ÇélIné Ändrè1)-1-(attrdirectoryStringFirstComponentMatch=ÇélIné Ändrè9999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrobjectIdentifierFirstComponentMatch=1.3.6.1.4.1.1466.115.121.1.15)-1-(attrobjectIdentifierFirstComponentMatch=1.3.6.1.4.1.1466.115.121.1.15.99999)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrdistinguishedNameMatch=cn=foo1,cn=bar)-1-(attrdistinguishedNameMatch=cn=foo1,cn=bar,cn=baz)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrintegerMatch=-2)-1-(attrintegerMatch=-20)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrintegerMatch>=-2)-6-(attrintegerMatch>=20)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrintegerFirstComponentMatch=-2)-1-(attrintegerFirstComponentMatch=-20)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attruniqueMemberMatch=cn=foo1,cn=bar#'0001'B)-1-(attruniqueMemberMatch=cn=foo1,cn=bar#'00010000'B)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrnumericStringMatch=00001)-1-(attrnumericStringMatch=000000001)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrnumericStringMatch>=00001)-6-(attrnumericStringMatch>=01)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attrtelephoneNumberMatch=+1 408 555 4798)-1-(attrtelephoneNumberMatch=+2 408 555 4798)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attroctetStringMatch=AAAAAAAAAAAAAAE=)-1-(attroctetStringMatch=AAAAAAAAAAAAAAEB)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_match_count[(attroctetStringMatch>=AAAAAAAAAAAAAAE=)-6-(attroctetStringMatch>=AAAAAAAAAAABAQE=)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrbitStringMatch:bitStringMatch:='0001'B)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match:caseExactIA5Match:=Sprain)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch:caseExactMatch:=ÇélIné Ändrè)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch:caseExactOrderingMatch:=ÇélIné Ändrè)-5] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeMatch:=20100218171300Z)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeOrderingMatch:=20100218171300Z)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrbooleanMatch:booleanMatch:=TRUE)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match:caseIgnoreIA5Match:=sprain1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch:caseIgnoreMatch:=ÇélIné Ändrè1)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch:caseIgnoreOrderingMatch:=ÇélIné Ändrè1)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch:caseIgnoreListMatch:=foo1$bar)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrobjectIdentifierMatch:objectIdentifierMatch:=1.3.6.1.4.1.1466.115.121.1.15)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrdirectoryStringFirstComponentMatch:directoryStringFirstComponentMatch:=ÇélIné Ändrè1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrobjectIdentifierFirstComponentMatch:objectIdentifierFirstComponentMatch:=1.3.6.1.4.1.1466.115.121.1.15)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrdistinguishedNameMatch:distinguishedNameMatch:=cn=foo1,cn=bar)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrintegerMatch:integerMatch:=-2)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrintegerMatch:integerOrderingMatch:=-2)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrintegerFirstComponentMatch:integerFirstComponentMatch:=-2)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attruniqueMemberMatch:uniqueMemberMatch:=cn=foo1,cn=bar#'0001'B)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-10] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-11] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch:telephoneNumberMatch:=+1 408 555 4798)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attroctetStringMatch:octetStringMatch:=AAAAAAAAAAAAAAE=)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attroctetStringMatch:octetStringOrderingMatch:=AAAAAAAAAAAAAAE=)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch=*ÇélIné Ändrè*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch=ÇélIné Ändrè*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch=*ÇélIné Ändrè)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch=*é Ä*)-5] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=*Sprain*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=Sprain*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=*Sprain)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=*rai*)-3] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*sprain1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=sprain1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*sprain1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*rai*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=ÇélIné Ändrè1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*é Ä*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*1$b*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*00001*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=00001*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*00001)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*000*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=+1 408 555 4798*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=* 55*)-6] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_test.py::test_filter_escaped | 0.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:42 Running test_filter_escaped... [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:78 test_filter_escaped: PASSED | |||
Passed | suites/filter/filter_test.py::test_filter_search_original_attrs | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:95 Running test_filter_search_original_attrs... [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:108 test_filter_search_original_attrs: PASSED | |||
Passed | suites/filter/filter_test.py::test_filter_scope_one | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:128 Search user using ldapsearch with scope one [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:130 [dn: cn=Directory Administrators,dc=example,dc=com cn: Directory Administrators ] [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:132 Search should only have one entry | |||
Passed | suites/filter/filter_test.py::test_filter_with_attribute_subtype | 0.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:filter_test.py:157 Bind as cn=Directory Manager [32mINFO [0m lib389:filter_test.py:164 ######################### ADD ###################### [32mINFO [0m lib389:filter_test.py:187 Try to add Add cn=test_entry both, dc=example,dc=com: dn: cn=test_entry both, dc=example,dc=com cn: test_entry both cn;en: test_entry en cn;fr: test_entry fr objectclass: top objectclass: person sn: test_entry both [32mINFO [0m lib389:filter_test.py:190 Try to add Add cn=test_entry en only, dc=example,dc=com: dn: cn=test_entry en only, dc=example,dc=com cn: test_entry en only cn;en: test_entry en objectclass: top objectclass: person sn: test_entry en only [32mINFO [0m lib389:filter_test.py:193 ######################### SEARCH ###################### [32mINFO [0m lib389:filter_test.py:197 Try to search with filter (&(sn=test_entry en only)(!(cn=test_entry fr))) [32mINFO [0m lib389:filter_test.py:201 Found cn=test_entry en only,dc=example,dc=com [32mINFO [0m lib389:filter_test.py:205 Try to search with filter (&(sn=test_entry en only)(!(cn;fr=test_entry fr))) [32mINFO [0m lib389:filter_test.py:209 Found cn=test_entry en only,dc=example,dc=com [32mINFO [0m lib389:filter_test.py:213 Try to search with filter (&(sn=test_entry en only)(!(cn;en=test_entry en))) [32mINFO [0m lib389:filter_test.py:216 Found none [32mINFO [0m lib389:filter_test.py:218 ######################### DELETE ###################### [32mINFO [0m lib389:filter_test.py:220 Try to delete cn=test_entry both, dc=example,dc=com [32mINFO [0m lib389:filter_test.py:223 Try to delete cn=test_entry en only, dc=example,dc=com [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:226 Testcase PASSED | |||
Passed | suites/filter/filter_test.py::test_extended_search | 0.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:253 Running test_filter_escaped... [32mINFO [0m lib389:filter_test.py:270 Try to search with filter (cn:de:=ext-test-entry) [32mINFO [0m lib389:filter_test.py:276 Try to search with filter (cn:caseIgnoreIA5Match:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:282 Try to search with filter (cn:caseIgnoreMatch:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:288 Try to search with filter (cn:caseExactMatch:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:294 Try to search with filter (cn:caseExactMatch:=ext-test-entry) [32mINFO [0m lib389:filter_test.py:300 Try to search with filter (cn:caseExactIA5Match:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:306 Try to search with filter (cn:caseExactIA5Match:=ext-test-entry) | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_telephone[(telephonenumber=*7393)] | 0.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_telephone[(telephonenumber=*408*3)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=mward)] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=sunnyvale)0] | 0.05 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=jreu*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=*exam*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*)] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1:=>AAA)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:es:=>AAA)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.5:=AAA)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1:=>user100)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:es:=>user100)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.5:=user100)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.1:=user1)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.1:=z)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=user1)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid<=Z)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid>=1)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid>=A)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid>=user20)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.2:=user20)] | 0.27 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.2:=z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1:=>=A)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=A)] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.4:=A)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1:=>=user20)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=user20)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.4:=user20)] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1:=>=z)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=z)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(description=This is the special * attribute value)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(description=*x*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=ptyler)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*wal*)] | 0.26 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=0312)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=mw*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=2295)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=Cupertino)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(objectclass=inetorgperson)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=sunnyvale)1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=200)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=201)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=202)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=*)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(sn~=tiller))(!(uid=ptyler)))] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(sn~=tiller)) (uid=ptyler))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*) (roomNumber=0312))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=*wal*))(!(roomNumber=0312)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=*wal*))(roomNumber=0312))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(!(roomNumber=0312)))] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*)(|(sn~=tiller) (roomNumber=2295)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(&(uid=*wal*) (roomNumber=2295))(&(uid=*wal*) (sn~=tiller)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(|(uid=*wal*) (sn~=tiller))(|(uid=*wal*) (roomNumber=2295)))0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*) (roomNumber=2295))0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(roomNumber=2295) (uid=*wal*))0] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(roomNumber=2295) (uid=*wal*))0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*) (roomNumber=2295))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*) (l=*))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=Cupertino) (|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=Cupertino)(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino)(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user1))(objectclass=inetorgperson))] | 0.32 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=user1))(objectclass=inetorgperson))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(mail=cnewport@example.com))(l=sunnyvale))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(|(uid=*wal*) (sn~=tiller))(|(uid=*wal*) (roomNumber=2295)))1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*) (roomNumber=2295))1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(roomNumber=2295) (uid=*wal*))1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(roomNumber=2295) (uid=*wal*))1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(roomNumber=200))(!(roomNumber=201))(!(roomNumber=202))(l=sunnyvale))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(roomNumber=2254))(&(!(roomNumber=200))(!(roomNumber=201))(!(roomNumber=202))(l=sunnyvale)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(roomNumber=2254))(&(!(roomNumber=200))(!(roomNumber=201))(!(roomNumber=202))(l=sunnyvale)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user1))(!(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20))(!(uid=user30)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=user1))(!(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20))(!(uid=user30)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(roomNumber=4012))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(roomNumber=4012))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(& (objectclass=inetorgperson)(!(uid=user1))(!(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20))(!(uid=user30)))] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(| (objectclass=inetorgperson)(!(uid=user1))(!(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20))(!(uid=user30)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=sunnyvale)(!(roomNumber=4012))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=sunnyvale)(!(roomNumber=4012))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.27 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(!(|(!(l=*))(!(l=sunnyvale))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=*))(!(l=sunnyvale)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(!(mail=*exam*))(|(uid=*wal*) (l=*)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(mail=*exam*) (|(uid=*wal*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (mail=*exam*) (|(uid=*wal*) (l=*)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(mail=*exam*))(|(uid=*wal*) (l=*)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(mail=*exam*)(!(|(uid=*wal*) (l=*))))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(mail=*exam*) (|(uid=*wal*) (l=*)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino)(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino)(!(mail=*exam*))(|(uid=*wal*) (l=*)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (mail=*exam*)(!(|(uid=*wal*) (l=*))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=Cupertino)(!(mail=*exam*))(|(uid=*wal*) (l=*)))] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(userpassword=*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(fred=*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1:=<1)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<1)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1.1:=1)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1:=<user1)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<user1)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1:=<z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid<=1)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid<=A)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid>=Z)] | 0.26 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1:=<=A)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=A)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1.2:=A)] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=user20)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1:=<=z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1.4:=z)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(sn~=tiller)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(givenName~=pricella)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(mail=cnewport@example.com)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid=user20)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid=user30)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid=user40)] | 0.26 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(sn~=tiller) (givenName~=pricella))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(sn~=tiller)(!(uid=ptyler)))] | 0.47 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(!(l=Cupertino))(mail=*exam*)(!(|(uid=*wal*) (l=*))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(l=Cupertino)(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(l=Cupertino) (mail=*exam*)(!(|(uid=*wal*) (l=*))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(&(l=Cupertino) (mail=*exam*) (|(uid=*wal*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filterscanlimit_test.py::test_invalid_configuration | 0.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filterscanlimit_test.py::test_idlistscanlimit | 10.31 | |
No log output captured. | |||
Passed | suites/filter/large_filter_test.py::test_large_filter[(&(objectClass=person)(|(manager=uid=fmcdonnagh,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_0,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_1,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_2,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_3,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_4,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_5,dc=anuj,dc=com)(manager=uid=jvedder, dc=anuj, dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_6,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_7,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_8,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_9,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_10,dc=anuj,dc=com)(manager=uid=cnewport, dc=anuj, dc=com)))] | 0.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/large_filter_test.py::test_large_filter[(&(objectClass=person)(|(manager=uid=fmcdonnagh *)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_0,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_1,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_2,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_3,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_4,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_5,*)(manager=uid=jvedder,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_6,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_7,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_8,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_9,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_10,*)(manager=uid=cnewport,*)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_supported_features | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-*] | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-True-oper_attr_list1-] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-True-oper_attr_list1-*] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-True-oper_attr_list1-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-False-oper_attr_list2-] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-False-oper_attr_list2-*] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-False-oper_attr_list2-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-True-oper_attr_list3-] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-True-oper_attr_list3-*] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[ou=people,dc=example,dc=com-True-oper_attr_list3-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-False-oper_attr_list4-] | 0.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-False-oper_attr_list4-*] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-False-oper_attr_list4-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-True-oper_attr_list5-] | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-True-oper_attr_list5-*] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-True-oper_attr_list5-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[cn=config-False-oper_attr_list6-] | 0.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[cn=config-False-oper_attr_list6-*] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[cn=config-False-oper_attr_list6-objectClass] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager | |||
Passed | suites/filter/schema_validation_test.py::test_filter_validation_config | 0.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/schema_validation_test.py::test_filter_validation_enabled | 3.96 | |
No log output captured. | |||
Passed | suites/filter/schema_validation_test.py::test_filter_validation_warn_safe | 0.85 | |
No log output captured. | |||
Passed | suites/filter/schema_validation_test.py::test_filter_validation_warn_unsafe | 0.40 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition0-cn] | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition1-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition2-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition3-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition4-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition5-modifyTimestamp] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition6-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition7-modifyTimestamp] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition8-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition9-modifyTimestamp] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition10-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition11-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition12-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition13-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition14-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition15-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition16-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition17-mailquota] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition18-mailquota] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition19-mailquota] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition20-mailquota] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition21-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(nsRoleDN=cn=new managed *)-condition22-cn] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(nsRoleDN=cn=new managed *)-condition23-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition24-mailquota] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition25-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition26-mailquota] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition27-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition28-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition29-nsRoleDN] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition30-modifiersName] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode=99999)] | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(postalAddress=345 California Av., Mountain View, CA)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode:2.16.840.1.113730.3.3.2.7.1:=88888)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode:2.16.840.1.113730.3.3.2.7.1.3:=66666)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=vpe*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=*emai*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota=*00)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota=*6*0)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(nsRole=*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(postalAddress=*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass:2.16.840.1.113730.3.3.2.15.1:=>AAA)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass:es:=>AAA)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass:2.16.840.1.113730.3.3.2.15.1.5:=AAA)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass:2.16.840.1.113730.3.3.2.15.1:=>vpemail)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass:es:=>vpemail)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.15.1.1:=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota<=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota>=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(nsRole~=cn=new)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(uid=*wal*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(uid=mw*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(roomNumber=0312)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(l=Cupertino)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(uid=user1)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(objectclass=inetorgperson)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(l=sunnyvale)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(roomNumber=3924)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(l=*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(objectclass=*)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota<=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota>=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.2:=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.2:=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1:=>=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1:=>=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.4:=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1:=>=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.4:=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole~=cn=new managed))(!(nsRole=cn=new vaddr filtered role,dc=example,dc=com)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*) (nsRole=cn=*another*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=*wal*))(!(nsRole=cn=*another*)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=*wal*))(nsRole=cn=*another*))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*)(!(nsRole=cn=*another*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(uid=*wal*)(|(nsRole~=cn=new managed) (l=Cupertino)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(&(uid=*wal*) (l=Cupertino))(&(uid=*wal*) (nsRole~=cn=new managed)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*)(&(nsRole~=cn=new managed) (l=Cupertino)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(|(uid=*wal*) (nsRole~=cn=new managed))(|(uid=*wal*) (l=Cupertino)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(nsRole=cn=*vaddr*) (uid=*wal*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*) (nsRole=cn=*vaddr*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(nsRole=cn=*vaddr*) (l=*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino) (|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino)(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user1))(objectclass=inetorgperson))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(objectclass=inetorgperson))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole=cn=*vaddr*))(l=sunnyvale))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(nsRole=cn=*vaddr*))(l=sunnyvale))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(roomNumber=2254))(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(roomNumber=2254))(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user1))(!(uid=user20))(!(uid=user30)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(!(uid=user20))(!(uid=user30)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(& (objectclass=inetorgperson)(!(uid=user1))(!(uid=user20))(!(uid=user30)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(| (objectclass=inetorgperson)(!(uid=user1))(!(uid=user20))(!(uid=user30)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=sunnyvale)(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=sunnyvale)(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(!(|(!(l=*))(!(l=sunnyvale))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=*))(!(l=sunnyvale)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino) (emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino)(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(postalCode:de:==77777)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(fred=*)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1.5:=vpemail)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1:=<1)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:es:=<1)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1.1:=1)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1:=<vpemail)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:es:=<vpemail)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1.1:=vpemail)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.15.1:=<900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:es:=<900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota<=100)] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota>=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole~=cn=new managed)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole=cn=new vaddr filtered role,dc=example,dc=com)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole=cn=*another*)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole=cn=*vaddr*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(uid=user20)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(uid=user30)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole=cn=another vaddr role,dc=example,dc=com)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(roomNumber=4508)] | 0.14 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(uid=user40)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(roomNumber=2254)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1:=<=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=100)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1.2:=100)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1:=<=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=600)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1:=<=900)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1.4:=900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(Description=This is the special \2a attribute value)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(Description=*\2a*)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(nsRole~=cn=new managed) (nsRole=cn=new vaddr filtered role,dc=example,dc=com))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(!(nsRole~=cn=new managed)) (nsRole=cn=new vaddr filtered role,dc=example,dc=com))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(nsRole~=cn=new managed)(!(nsRole=cn=new vaddr filtered role,dc=example,dc=com)))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(uid=*wal*) (nsRole=cn=*vaddr*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(nsRole=cn=*vaddr*) (uid=*wal*))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(!(l=Cupertino))(emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(l=Cupertino)(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(l=Cupertino) (emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.01 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_verify_trees | 2.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 38b43c3f-3529-4e67-9df1-3101e06a0650 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c7485661-d310-4929-bc67-720453929901 / got description=38b43c3f-3529-4e67-9df1-3101e06a0650) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect fbf0e7d1-930e-46d7-ae01-3eff34c1eda1 / got description=c7485661-d310-4929-bc67-720453929901) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f4fda414-b34e-40b3-91c8-04a6bebbc4e4 / got description=fbf0e7d1-930e-46d7-ae01-3eff34c1eda1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 21b1d400-f6c3-40c5-aed2-72d377a0e436 / got description=f4fda414-b34e-40b3-91c8-04a6bebbc4e4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 893aef95-1bfd-4aeb-91e6-7e76d8d192f1 / got description=21b1d400-f6c3-40c5-aed2-72d377a0e436) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ad800842-1de6-4c60-9a94-11a6190565b1 / got description=893aef95-1bfd-4aeb-91e6-7e76d8d192f1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a4f949b2-c17d-49ec-8c3e-7b9ab8321945 / got description=ad800842-1de6-4c60-9a94-11a6190565b1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_sync_through_to_all_4_masters | 3.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a73bfefb-2606-4c55-8185-bc64a2c2bd5b / got description=55b4c227-180f-433c-9f25-9c617df66ec3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect e1ce44e0-b86f-4310-af19-a8a32c71f5c8 / got description=a73bfefb-2606-4c55-8185-bc64a2c2bd5b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect ecffcb9c-8371-464b-bed6-48d03198d812 / got description=e1ce44e0-b86f-4310-af19-a8a32c71f5c8) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_modify_some_data_in_m3 | 8.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect cfc6c5c7-e208-4d6b-b5fd-d2b24719161d / got description=ecffcb9c-8371-464b-bed6-48d03198d812) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d25d29a5-6c91-4aa1-9531-dd11d98efa42 / got description=cfc6c5c7-e208-4d6b-b5fd-d2b24719161d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect ac661397-39d7-4963-b3eb-9c20223be8b7 / got description=d25d29a5-6c91-4aa1-9531-dd11d98efa42) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_delete_a_few_entries_in_m4 | 4.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 130c3861-1d51-422c-9d20-ef3a1c4794c2 / got description=ac661397-39d7-4963-b3eb-9c20223be8b7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a8071a84-8c60-4a77-825e-529ab26ba1a6 / got description=130c3861-1d51-422c-9d20-ef3a1c4794c2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect faf2a4c6-b0cb-4fe4-8876-c1f4859fe1e6 / got description=a8071a84-8c60-4a77-825e-529ab26ba1a6) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b418d941-c77f-494e-96a5-7d7932b0c742 / got description=faf2a4c6-b0cb-4fe4-8876-c1f4859fe1e6) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_replicated_multivalued_entries | 1.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a0f23ad8-3330-48d7-a58b-4796523b5f25 / got description=b418d941-c77f-494e-96a5-7d7932b0c742) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_bad_replication_agreement | 27.40 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_nsds5replicaenabled_verify | 69.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2484 FAIL: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7aafdb8f-6171-4f39-90c5-95da23de61fa / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b5318f69-8a01-4332-9c6c-190b453ada3f / got description=a0f23ad8-3330-48d7-a58b-4796523b5f25) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2484 FAIL: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8033b47d-0f46-4133-9726-a593ead83f5c / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a78efac1-cf78-44de-af7e-acc99841fd82 / got description=b5318f69-8a01-4332-9c6c-190b453ada3f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2484 FAIL: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c72526bb-a0f2-42a7-a917-9ab686da7dda / got description=a78efac1-cf78-44de-af7e-acc99841fd82) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 03e461d6-d5a0-4ed0-be79-1b8339d0c2ab / got description=c72526bb-a0f2-42a7-a917-9ab686da7dda) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_create_an_entry_on_the_supplier | 2.88 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_bob_acceptance_tests | 7.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6a3a0f98-275c-472f-8139-060e00035cea / got description=03e461d6-d5a0-4ed0-be79-1b8339d0c2ab) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_replica_backup_and_restore | 32.41 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/output_file [29/Sep/2020:20:26:28.478364678 -0400] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2a468574-bcc4-4280-8480-e7c484535e0e / got description=6a3a0f98-275c-472f-8139-060e00035cea) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ef53558d-da51-4855-8021-bc9960cdfee3 / got description=2a468574-bcc4-4280-8480-e7c484535e0e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 77ff9a37-5fcd-49f7-9a8f-51ebff47305a / got description=ef53558d-da51-4855-8021-bc9960cdfee3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4b92c1de-1c9f-4694-a278-da17b383cccc / got description=77ff9a37-5fcd-49f7-9a8f-51ebff47305a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 42aeed68-637a-4670-ae2a-1504b70cc197 / got description=4b92c1de-1c9f-4694-a278-da17b383cccc) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 42aeed68-637a-4670-ae2a-1504b70cc197 / got description=4b92c1de-1c9f-4694-a278-da17b383cccc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 16cd4da9-d970-4a3b-b16a-d05811397ed7 / got description=42aeed68-637a-4670-ae2a-1504b70cc197) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fractional/fractional_test.py::test_fractional_agreements | 3.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39202, 'ldap-secureport': 63902, 'server-id': 'consumer2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4a013b3b-99b7-417e-8272-7bbe1e2f853f / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 27dd0990-49b8-4d4a-a6ed-eb59fe4ece6a / got description=4a013b3b-99b7-417e-8272-7bbe1e2f853f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 081e6b4f-df5f-4962-97fb-817321347c27 / got description=27dd0990-49b8-4d4a-a6ed-eb59fe4ece6a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 2a2cc1ca-9a0f-4d65-991c-3bc8e7627739 / got description=081e6b4f-df5f-4962-97fb-817321347c27) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 already exists [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2e9f8ab1-696f-4a73-8d05-3fdad85f808d / got description=2a2cc1ca-9a0f-4d65-991c-3bc8e7627739) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect a330c262-f108-43c0-b942-f4880df4374c / got description=2e9f8ab1-696f-4a73-8d05-3fdad85f808d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 4afeb72b-2419-493d-820b-0032c3a1396d / got description=a330c262-f108-43c0-b942-f4880df4374c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_read_only_consumer | 0.09 | |
No log output captured. | |||
Passed | suites/fractional/fractional_test.py::test_read_write_supplier | 3.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9006fa3b-906f-4c25-8372-e941f491afec / got description=4afeb72b-2419-493d-820b-0032c3a1396d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 3916eec0-e2a3-4262-9fa7-376fccaa3f09 / got description=9006fa3b-906f-4c25-8372-e941f491afec) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 8ac16af5-7caa-46f1-89a2-3d13dbf06ee7 / got description=3916eec0-e2a3-4262-9fa7-376fccaa3f09) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_filtered_attributes | 3.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0e40dba9-22c5-418d-abb4-3b546ba07537 / got description=8ac16af5-7caa-46f1-89a2-3d13dbf06ee7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect d984e713-ec02-429d-84f3-fdbcc8e51029 / got description=0e40dba9-22c5-418d-abb4-3b546ba07537) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 15521a81-11fd-4cba-a506-64ae27e8fe6d / got description=d984e713-ec02-429d-84f3-fdbcc8e51029) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_fewer_changes_in_single_operation | 9.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 92b401d2-730a-46dd-a354-e934bcde45f3 / got description=15521a81-11fd-4cba-a506-64ae27e8fe6d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 318108cc-128e-44f1-8168-e2b0968dc7e2 / got description=92b401d2-730a-46dd-a354-e934bcde45f3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 6339b078-1579-4d01-8d23-ad0f87aaee59 / got description=318108cc-128e-44f1-8168-e2b0968dc7e2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 06ce0ee1-2873-4417-80ac-972f1c370929 / got description=6339b078-1579-4d01-8d23-ad0f87aaee59) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect a112a122-0469-46e2-bcc3-89eaeb54fc69 / got description=06ce0ee1-2873-4417-80ac-972f1c370929) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 71e3db40-468c-439d-a499-f0f8f4e01af5 / got description=a112a122-0469-46e2-bcc3-89eaeb54fc69) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d8c92b5e-de10-4d31-a0ce-cb74f9b79639 / got description=71e3db40-468c-439d-a499-f0f8f4e01af5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect cd4b8870-b993-40d9-85ba-540a6eeae78f / got description=d8c92b5e-de10-4d31-a0ce-cb74f9b79639) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect fda6a9df-a301-4a3f-9362-9a9083111bd8 / got description=cd4b8870-b993-40d9-85ba-540a6eeae78f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_newly_added_attribute_nsds5replicatedattributelisttotal | 6.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 339c982a-53d8-4d94-8e40-f1adaad403ef / got description=fda6a9df-a301-4a3f-9362-9a9083111bd8) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 339c982a-53d8-4d94-8e40-f1adaad403ef / got description=fda6a9df-a301-4a3f-9362-9a9083111bd8) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 339c982a-53d8-4d94-8e40-f1adaad403ef / got description=fda6a9df-a301-4a3f-9362-9a9083111bd8) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 339c982a-53d8-4d94-8e40-f1adaad403ef / got description=fda6a9df-a301-4a3f-9362-9a9083111bd8) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect b7b499cc-ac28-4299-a214-ebf2aa7543f5 / got description=339c982a-53d8-4d94-8e40-f1adaad403ef) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 35d54595-bd2a-4b4e-9986-6184dfa09ffb / got description=b7b499cc-ac28-4299-a214-ebf2aa7543f5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_attribute_nsds5replicatedattributelisttotal | 21.59 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect afc04077-b1a6-4794-bfcb-cd5d5ede4aa6 / got description=35d54595-bd2a-4b4e-9986-6184dfa09ffb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 81ce076e-1706-4251-b135-5ee7ca1cda0c / got description=afc04077-b1a6-4794-bfcb-cd5d5ede4aa6) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 02fda430-741d-4548-ac5b-61ce22e45e76 / got description=81ce076e-1706-4251-b135-5ee7ca1cda0c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_implicit_replication_of_password_policy | 12.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2091b7c9-ba00-4f50-b02b-d416c7d2251f / got description=02fda430-741d-4548-ac5b-61ce22e45e76) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 92bfbebf-f1db-40d1-84dc-27807202fbd8 / got description=2091b7c9-ba00-4f50-b02b-d416c7d2251f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 3b7533bb-c923-4b5c-b55d-b46160fb61a2 / got description=92bfbebf-f1db-40d1-84dc-27807202fbd8) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c56803c6-d344-44f0-91ff-79e379bf64d2 / got description=3b7533bb-c923-4b5c-b55d-b46160fb61a2) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c56803c6-d344-44f0-91ff-79e379bf64d2 / got description=3b7533bb-c923-4b5c-b55d-b46160fb61a2) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c56803c6-d344-44f0-91ff-79e379bf64d2 / got description=3b7533bb-c923-4b5c-b55d-b46160fb61a2) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c56803c6-d344-44f0-91ff-79e379bf64d2 / got description=3b7533bb-c923-4b5c-b55d-b46160fb61a2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 9f8eaf38-6444-413f-a4f2-538147451e2b / got description=c56803c6-d344-44f0-91ff-79e379bf64d2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 793d4c33-f29e-4874-9601-34669f942329 / got description=9f8eaf38-6444-413f-a4f2-538147451e2b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 672e6a64-eadc-43d8-8884-cefa9397af34 / got description=c56803c6-d344-44f0-91ff-79e379bf64d2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 3906c491-3d7b-4123-aa8e-b6f1dde1f344 / got description=672e6a64-eadc-43d8-8884-cefa9397af34) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect dc2f18a0-463d-49f3-b5fc-042df2c61836 / got description=3906c491-3d7b-4123-aa8e-b6f1dde1f344) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/get_effective_rights/acceptance_test.py::test_group_aci_entry_exists | 0.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:30 Adding user testuser -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:57 Adding group group1 [32mINFO [0m tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:70 Add an ACI granting add access to a user matching the groupdn [32mINFO [0m lib389:acceptance_test.py:79 dn: uid=testuser,dc=example,dc=com [32mINFO [0m lib389:acceptance_test.py:81 ######## entryLevelRights: b'vadn' | |||
Passed | suites/get_effective_rights/acceptance_test.py::test_group_aci_template_entry | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:105 Add an ACI granting add access to a user matching the userdn [32mINFO [0m lib389:acceptance_test.py:115 dn: cn=template_person_objectclass,dc=example,dc=com [32mINFO [0m lib389:acceptance_test.py:117 ######## entryLevelRights: b'vadn' [32mINFO [0m lib389:acceptance_test.py:120 dn: cn=template_groupofnames_objectclass,dc=example,dc=com [32mINFO [0m lib389:acceptance_test.py:122 ######## entryLevelRights: b'v' | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_gssapi_bind | 0.51 | |
-----------------------------Captured stdout setup------------------------------ Kerberos master password: GyjxiWam1Mh4mdcHBubEPBmnd1L3mVYHxlVplrjfderEJCA0VaK7laoPY.UKEoP58 Loading random data Initializing database '/var/kerberos/krb5kdc/principal' for realm 'HOSTED.UPSHIFT.RDU2.REDHAT.COM', master key name 'K/M@HOSTED.UPSHIFT.RDU2.REDHAT.COM' Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Principal "ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM" created. Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. K/M@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/changepw@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM krbtgt/HOSTED.UPSHIFT.RDU2.REDHAT.COM@HOSTED.UPSHIFT.RDU2.REDHAT.COM ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Entry for principal ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes256-cts-hmac-sha1-96 added to keytab WRFILE:/etc/krb5.keytab. Entry for principal ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes128-cts-hmac-sha1-96 added to keytab WRFILE:/etc/krb5.keytab. Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Principal "testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM" created. Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. K/M@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/changepw@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM krbtgt/HOSTED.UPSHIFT.RDU2.REDHAT.COM@HOSTED.UPSHIFT.RDU2.REDHAT.COM ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Entry for principal testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes256-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/testuser.keytab. Entry for principal testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes128-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/testuser.keytab. -----------------------------Captured stderr setup------------------------------ No policy specified for ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy No policy specified for testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_invalid_sasl_map | 0.27 | |
No log output captured. | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_missing_user | 1.18 | |
------------------------------Captured stdout call------------------------------ Authenticating as principal testuser/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Principal "doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM" created. Authenticating as principal testuser/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. K/M@HOSTED.UPSHIFT.RDU2.REDHAT.COM doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/changepw@HOSTED.UPSHIFT.RDU2.REDHAT.COM kadmin/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM krbtgt/HOSTED.UPSHIFT.RDU2.REDHAT.COM@HOSTED.UPSHIFT.RDU2.REDHAT.COM ldap/ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM Authenticating as principal testuser/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Entry for principal doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes256-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/doesnotexist.keytab. Entry for principal doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes128-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/doesnotexist.keytab. ------------------------------Captured stderr call------------------------------ No policy specified for doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_support_mech | 0.26 | |
No log output captured. | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_rejected_mech | 0.26 | |
No log output captured. | |||
Passed | suites/gssapi_repl/gssapi_repl_test.py::test_gssapi_repl | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7463af30-b600-42a5-bc88-627e4e69602c / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 247aa6b9-6f9c-4565-898d-8dd4affa4c2e / got description=7463af30-b600-42a5-bc88-627e4e69602c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/import/import_test.py::test_import_with_index | 8.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/import/import_test.py::test_crash_on_ldif2db | 4.68 | |
No log output captured. | |||
Passed | suites/import/import_test.py::test_ldif2db_allows_entries_without_a_parent_to_be_imported | 5.65 | |
-------------------------------Captured log call-------------------------------- [1m[31mERROR [0m lib389:__init__.py:2706 ldif2db: Can't find file: /var/lib/dirsrv/slapd-standalone1/ldif/bogus.ldif | |||
Passed | suites/import/import_test.py::test_issue_a_warning_if_the_cache_size_is_smaller | 7.27 | |
No log output captured. | |||
Passed | suites/import/import_test.py::test_entry_with_escaped_characters_fails_to_import_and_index | 12.99 | |
------------------------------Captured stderr call------------------------------ [29/Sep/2020:20:30:56.969120783 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:20:30:56.979193311 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7491170304, process usage 22962176 [29/Sep/2020:20:30:56.982000747 -0400] - INFO - check_and_set_import_cache - Import allocates 16384KB import cache. [29/Sep/2020:20:30:56.985753362 -0400] - INFO - bdb_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/givenName.db) [29/Sep/2020:20:30:56.989040500 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/givenName.db [29/Sep/2020:20:30:56.992081174 -0400] - INFO - bdb_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/aci.db) [29/Sep/2020:20:30:56.994825584 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/aci.db [29/Sep/2020:20:30:56.997769922 -0400] - INFO - bdb_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/sn.db) [29/Sep/2020:20:30:57.000486961 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/sn.db [29/Sep/2020:20:30:57.005690321 -0400] - INFO - bdb_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/numsubordinates.db) [29/Sep/2020:20:30:57.009216944 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/numsubordinates.db [29/Sep/2020:20:30:57.012251211 -0400] - INFO - bdb_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/nsuniqueid.db) [29/Sep/2020:20:30:57.014831948 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/nsuniqueid.db [29/Sep/2020:20:30:57.017876706 -0400] - INFO - bdb_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/ancestorid.db) [29/Sep/2020:20:30:57.020880137 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/ancestorid.db [29/Sep/2020:20:30:57.023923204 -0400] - INFO - bdb_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/parentid.db) [29/Sep/2020:20:30:57.033206974 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/parentid.db [29/Sep/2020:20:30:57.037342678 -0400] - INFO - bdb_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/mail.db) [29/Sep/2020:20:30:57.040655876 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/mail.db [29/Sep/2020:20:30:57.045249769 -0400] - INFO - bdb_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/telephoneNumber.db) [29/Sep/2020:20:30:57.049721690 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/telephoneNumber.db [29/Sep/2020:20:30:57.053056584 -0400] - INFO - bdb_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/cn.db) [29/Sep/2020:20:30:57.055845155 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/cn.db [29/Sep/2020:20:30:57.058869851 -0400] - INFO - bdb_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/roomNumber.db) [29/Sep/2020:20:30:57.062917130 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/roomNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/roomNumber.db [29/Sep/2020:20:30:57.066369182 -0400] - INFO - bdb_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/DBVERSION) [29/Sep/2020:20:30:57.069560637 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/DBVERSION [29/Sep/2020:20:30:57.073631855 -0400] - INFO - bdb_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/uid.db) [29/Sep/2020:20:30:57.077092178 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/uid.db [29/Sep/2020:20:30:57.081027011 -0400] - INFO - bdb_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/entryrdn.db) [29/Sep/2020:20:30:57.085547470 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/entryrdn.db [29/Sep/2020:20:30:57.088713395 -0400] - INFO - bdb_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/id2entry.db) [29/Sep/2020:20:30:57.092843465 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/id2entry.db [29/Sep/2020:20:30:57.099289929 -0400] - INFO - bdb_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/objectclass.db) [29/Sep/2020:20:30:57.103654665 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/userRoot/objectclass.db [29/Sep/2020:20:30:57.108609634 -0400] - INFO - upgradedb_core - userRoot: Start upgradedb. [29/Sep/2020:20:30:57.112920101 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7490859008, process usage 23941120 [29/Sep/2020:20:30:57.116500040 -0400] - INFO - check_and_set_import_cache - Import allocates 16384KB import cache. [29/Sep/2020:20:30:57.154136564 -0400] - INFO - bdb_import_main - reindex userRoot: Index buffering enabled with bucket size 17 [29/Sep/2020:20:30:57.859842426 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [29/Sep/2020:20:30:58.063525458 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [29/Sep/2020:20:30:58.067262749 -0400] - INFO - bdb_import_main - reindex userRoot: Cleaning up producer thread... [29/Sep/2020:20:30:58.070100245 -0400] - INFO - bdb_import_main - reindex userRoot: Indexing complete. Post-processing... [29/Sep/2020:20:30:58.074361240 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [29/Sep/2020:20:30:58.077082936 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numSubordinates complete. [29/Sep/2020:20:30:58.083178293 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [29/Sep/2020:20:30:58.085983700 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [29/Sep/2020:20:30:58.088648180 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Starting sort of ancestorid non-leaf IDs... [29/Sep/2020:20:30:58.091284627 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished sort of ancestorid non-leaf IDs. [29/Sep/2020:20:30:58.097968763 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [29/Sep/2020:20:30:58.101128905 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [29/Sep/2020:20:30:58.103928903 -0400] - INFO - bdb_import_main - reindex userRoot: Flushing caches... [29/Sep/2020:20:30:58.106448997 -0400] - INFO - bdb_import_main - reindex userRoot: Closing files... [29/Sep/2020:20:30:58.130157483 -0400] - INFO - bdb_import_main - reindex userRoot: Reindexing complete. Processed 15 entries in 1 seconds. (15.00 entries/sec) [29/Sep/2020:20:30:58.133811554 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/log.0000000001 [29/Sep/2020:20:30:58.151553995 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-09-29T20:30:56.830763/DBVERSION [29/Sep/2020:20:30:58.158803872 -0400] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | suites/import/regression_test.py::test_replay_import_operation | 32.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:94 Exporting LDIF online... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:53 Run. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:104 Importing LDIF online, should raise operation error. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:115 Looping. Tried 1 times so far. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:57 Adding users. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:119 Importing LDIF online | |||
Passed | suites/import/regression_test.py::test_import_be_default | 11.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:143 Adding suffix:dc=default,dc=com and backend: default... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:149 Create LDIF file and import it... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:154 Stopping the server and running offline import... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:160 Verifying entry count after import... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:166 Test PASSED | |||
Passed | suites/import/regression_test.py::test_del_suffix_import | 7.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:183 Adding suffix:dc=importest1,dc=com and backend: importest1 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:188 Create LDIF file and import it [32mINFO [0m tests.suites.import.regression_test:regression_test.py:194 Stopping the server and running offline import [32mINFO [0m tests.suites.import.regression_test:regression_test.py:199 Deleting suffix-dc=importest2,dc=com [32mINFO [0m tests.suites.import.regression_test:regression_test.py:202 Adding the same database-importest1 after deleting it | |||
Passed | suites/import/regression_test.py::test_del_suffix_backend | 9.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:221 Adding suffix:dc=importest2,dc=com and backend: importest2 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:226 Create LDIF file and import it [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_203200 for file /var/lib/dirsrv/slapd-standalone1/ldif/suffix_del2.ldif completed successfully [32mINFO [0m tests.suites.import.regression_test:regression_test.py:234 Deleting suffix-dc=importest2,dc=com [32mINFO [0m tests.suites.import.regression_test:regression_test.py:237 Adding the same database-importest2 after deleting it [32mINFO [0m tests.suites.import.regression_test:regression_test.py:240 Checking if server can be restarted after re-adding the same database | |||
Passed | suites/import/regression_test.py::test_import_duplicate_dn | 15.37 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:266 Delete the previous error logs [32mINFO [0m tests.suites.import.regression_test:regression_test.py:269 Create import file [32mINFO [0m tests.suites.import.regression_test:regression_test.py:292 Import ldif with duplicate entry [1m[31mERROR [0m lib389:tasks.py:492 Error: import task import_09292020_203213 for file /var/lib/dirsrv/slapd-standalone1/ldif/data.ldif exited with -23 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:295 Restart the server to flush the logs [32mINFO [0m tests.suites.import.regression_test:regression_test.py:298 Error log should not have "unable to flush" message [32mINFO [0m tests.suites.import.regression_test:regression_test.py:301 Error log should have "Duplicated DN detected" message | |||
Passed | suites/import/regression_test.py::test_large_ldif2db_ancestorid_index_creation | 626.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:354 Delete the previous errors logs [32mINFO [0m tests.suites.import.regression_test:regression_test.py:357 Add suffix:o=test and backend: test... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:370 Create a large nested ldif file using dbgen : /var/lib/dirsrv/slapd-standalone1/ldif/large_nested.ldif [32mINFO [0m tests.suites.import.regression_test:regression_test.py:373 Stop the server and run offline import... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:378 Starting the server [32mINFO [0m tests.suites.import.regression_test:regression_test.py:381 parse the errors logs to check lines with "Starting sort of ancestorid" are present [32mINFO [0m tests.suites.import.regression_test:regression_test.py:385 parse the errors logs to check lines with "Finished sort of ancestorid" are present [32mINFO [0m tests.suites.import.regression_test:regression_test.py:389 parse the error logs for the line with "Gathering ancestorid non-leaf IDs" [32mINFO [0m tests.suites.import.regression_test:regression_test.py:393 parse the error logs for the line with "Created ancestorid index" [32mINFO [0m tests.suites.import.regression_test:regression_test.py:397 get the ancestorid non-leaf IDs indexing start and end time from the collected strings [32mINFO [0m tests.suites.import.regression_test:regression_test.py:403 Calculate the elapsed time for the ancestorid non-leaf IDs index creation | |||
Passed | suites/indexes/regression_test.py::test_reindex_task_creates_abandoned_index_file | 12.90 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:795 Index task index_all_09292020_204259 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_all_09292020_204302 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_all_09292020_204308 completed successfully | |||
Passed | suites/lib389/config_compare_test.py::test_config_compare | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_mul_explicit_rdn | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_mul_derive_single_dn | 0.02 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_mul_derive_mult_dn | 0.01 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_dn | 0.16 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_rdn | 0.01 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_derive_single_dn | 0.01 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_derive_mult_dn | 0.01 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_invalid_no_basedn | 0.00 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_invalid_no_rdn | 0.00 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_non_present_rdn | 0.03 | |
No log output captured. | |||
Passed | suites/lib389/idm/user_compare_i2_test.py::test_user_compare_i2 | 0.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/lib389/idm/user_compare_m2Repl_test.py::test_user_compare_m2Repl | 1.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 530891c0-3d01-4f75-9fce-2f32a033ff60 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0892ee27-c460-4197-8315-06041c040d0f / got description=530891c0-3d01-4f75-9fce-2f32a033ff60) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect bbd421b6-627b-4223-900c-8ef5b151fcd5 / got description=0892ee27-c460-4197-8315-06041c040d0f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/lib389/idm/user_compare_st_test.py::test_user_compare | 0.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logexpirationtime-invalid_vals0-valid_vals0] | 0.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[maxlogsize-invalid_vals1-valid_vals1] | 0.08 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logmaxdiskspace-invalid_vals2-valid_vals2] | 0.09 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logminfreediskspace-invalid_vals3-valid_vals3] | 0.10 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[mode-invalid_vals4-valid_vals4] | 0.15 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[maxlogsperdir-invalid_vals5-valid_vals5] | 0.09 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logrotationsynchour-invalid_vals6-valid_vals6] | 0.09 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logrotationsyncmin-invalid_vals7-valid_vals7] | 0.10 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logrotationtime-invalid_vals8-valid_vals8] | 0.11 | |
No log output captured. | |||
Passed | suites/mapping_tree/be_del_and_default_naming_attr_test.py::test_be_delete | 1.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. | |||
Passed | suites/mapping_tree/referral_during_tot_init_test.py::test_referral_during_tot | 7.95 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 264e7dc3-4347-46ea-9acc-8a7958fbc386 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 45f533ee-e332-4045-aed6-3d4a5e015c14 / got description=264e7dc3-4347-46ea-9acc-8a7958fbc386) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stderr call------------------------------ [29/Sep/2020:20:44:55.496653992 -0400] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_with_repl | 94.69 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:515 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect c5c0735c-34e5-4562-b6fa-a1bec6eefa5e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2195 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 282e8423-0e86-49ca-9a37-ab7b637c9805 / got description=c5c0735c-34e5-4562-b6fa-a1bec6eefa5e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:77 update cn=101,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:77 update cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal | |||
Passed | suites/memberof_plugin/regression_test.py::test_scheme_violation_errors_logged | 4.13 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ffa64326-f57f-4a60-b8e6-f8ad7278924a / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c9eeedcd-df84-4951-9d79-33bf47060bf5 / got description=ffa64326-f57f-4a60-b8e6-f8ad7278924a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:318 memberOf attr value - cn=group1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:321 pattern = .*oc_check_allowed_sv.*uid=user_,ou=People,dc=example,dc=com.*memberOf.*not allowed.* | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_with_changelog_reset | 57.50 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:353 Configure memberof on M1 and M2 [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:364 On M1, add 999 test entries allowing memberof [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:51 Adding 999 users [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:367 On M1, add a group with these 999 entries as members [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:375 Adding the test group using async function [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:385 Check the log messages for error [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:389 Check that the replication is working fine both ways, M1 <-> M2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 101dcbfa-436f-4ff5-9d4a-20797a50e4c3 / got description=c9eeedcd-df84-4951-9d79-33bf47060bf5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 51f32676-8fc0-4bb6-98b3-8579d657ea0c / got description=101dcbfa-436f-4ff5-9d4a-20797a50e4c3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 51f32676-8fc0-4bb6-98b3-8579d657ea0c / got description=101dcbfa-436f-4ff5-9d4a-20797a50e4c3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 51f32676-8fc0-4bb6-98b3-8579d657ea0c / got description=101dcbfa-436f-4ff5-9d4a-20797a50e4c3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_group | 5.52 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.memberof_plugin.regression_test:regression_test.py:480 Enable memberof plugin and set the scope as cn=sub1,dc=example,dc=com [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:426 Renaming user (cn=g2,cn=sub2,dc=example,dc=com): new cn=g2-new [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g2-new,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' [32mINFO [0m lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g2-new,cn=sub1,dc=example,dc=com' | |||
Passed | suites/memberof_plugin/regression_test.py::test_entrycache_on_modrdn_failure | 9.51 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user0,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user1,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user2,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user3,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user4,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user5,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user6,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user7,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user8,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user9,ou=people,dc=example,dc=com): [32mINFO [0m lib389:regression_test.py:595 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in0,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:595 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in0,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:617 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_out1,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:617 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_out1,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:632 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:632 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in1,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:632 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:632 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in1,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:671 retrieve: cn=group_in0,ou=People,dc=example,dc=com with desc=b'mygroup' [32mINFO [0m lib389:regression_test.py:671 retrieve: cn=group_in1,ou=People,dc=example,dc=com with desc=b'mygroup' [32mINFO [0m lib389:regression_test.py:671 retrieve: cn=group_out2,dc=example,dc=com with desc=b'this is to check that the entry having this description has the appropriate DN' | |||
Passed | suites/memberof_plugin/regression_test.py::test_silent_memberof_failure | 10.23 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user0,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user1,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user2,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user3,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user4,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user5,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user6,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user7,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user8,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user9,ou=people,dc=example,dc=com): [32mINFO [0m lib389:regression_test.py:758 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in0,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:758 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in0,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:780 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_out1,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:780 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_out1,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:795 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:795 !!!!!!! cn=user0,ou=people,dc=example,dc=com: memberof->b'cn=group_in1,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:795 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in0,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:795 !!!!!!! cn=user1,ou=people,dc=example,dc=com: memberof->b'cn=group_in1,ou=People,dc=example,dc=com' (vs b'cn=group_in1,ou=people,dc=example,dc=com') [32mINFO [0m lib389:regression_test.py:832 Should assert cn=user2,ou=people,dc=example,dc=com has memberof is False [32mINFO [0m lib389:regression_test.py:832 Should assert cn=user3,ou=people,dc=example,dc=com has memberof is False [32mINFO [0m lib389:regression_test.py:855 Should assert cn=user4,ou=people,dc=example,dc=com has memberof is False [32mINFO [0m lib389:regression_test.py:855 Should assert cn=user5,ou=people,dc=example,dc=com has memberof is False | |||
Passed | suites/monitor/monitor_test.py::test_monitor | 0.27 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:44 connection: ['1:20200930004924Z:3:2:-:cn=directory manager:0:0:0:1:ip=127.0.0.1'], currentconnections: ['1'], totalconnections: ['1'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:48 version :: ['1:20200930004924Z:6:5:-:cn=directory manager:0:0:0:1:ip=127.0.0.1'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:52 threads: ['16'],currentconnectionsatmaxthreads: ['0'],maxthreadsperconnhits: ['0'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:56 nbackends: ['1'], backendmonitordn: ['cn=monitor,cn=userRoot,cn=ldbm database,cn=plugins,cn=config'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:60 opsinitiated: ['12'], opscompleted: ['13'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:64 dtablesize: ['1024'],readwaiters: ['0'],entriessent: ['14'],bytessent: ['1099'],currenttime: ['20200930004924Z'],starttime: ['20200930004924Z'] | |||
Passed | suites/monitor/monitor_test.py::test_monitor_ldbm | 0.01 | |
No log output captured. | |||
Passed | suites/monitor/monitor_test.py::test_monitor_backend | 0.01 | |
No log output captured. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[6-5] | 0.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:56 Adding user simplepaged_test -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 5 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 6; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71f0250>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:253 5 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 5 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[5-5] | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 5 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71e6070>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:253 5 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 5 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[5-25] | 1.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 25 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e6db6ee0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:253 25 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 25 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_limits_fail[50-200-cn=config,cn=ldbm database,cn=plugins,cn=config-nsslapd-idlistscanlimit-100-UNWILLING_TO_PERFORM] | 9.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 200 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 200 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_limits_fail[5-15-cn=config-nsslapd-timelimit-20-UNAVAILABLE_CRITICAL_EXTENSION] | 30.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 15 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-timelimit to 20. Previous value - b'3600'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 15 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-timelimit to b'3600'. Previous value - b'20'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_limits_fail[21-50-cn=config-nsslapd-sizelimit-20-SIZELIMIT_EXCEEDED] | 2.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 20. Previous value - b'2000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'20'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_limits_fail[21-50-cn=config-nsslapd-pagedsizelimit-5-SIZELIMIT_EXCEEDED] | 2.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_limits_fail[5-50-cn=config,cn=ldbm database,cn=plugins,cn=config-nsslapd-lookthroughlimit-20-ADMINLIMIT_EXCEEDED] | 2.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 20. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'20'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_sort_success | 2.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:379 Initiate ldapsearch with created control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:380 Collect data with sorting [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21f430a760>, <lib389._controls.SSSRequestControl object at 0x7f21f430aa30>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:385 Substring numbers from user DNs [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:389 Assert that list is sorted [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_abandon | 5.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:420 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:423 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:427 Initiate a search with a paged results control [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:430 Abandon the search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:433 Expect an ldap.TIMEOUT exception, while trying to get the search results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_with_timelimit | 34.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:469 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:472 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[fqdn] | 5.53 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:548 Back up current suffix ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:551 Add test ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:557 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:560 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:564 Initiate three searches with a paged results control [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 1 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e4702490>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 2 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e4702490>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 3 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e4702490>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:571 If we are here, then no error has happened. We are good. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:574 Restore ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[ip] | 5.69 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:548 Back up current suffix ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:551 Add test ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:557 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:560 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:564 Initiate three searches with a paged results control [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 1 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e46a50d0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 2 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e46a50d0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:566 3 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e46a50d0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:571 If we are here, then no error has happened. We are good. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:574 Restore ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_multiple_paging | 5.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:607 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:610 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_invalid_cookie[1000] | 4.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:662 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:665 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:673 Put an invalid cookie (1000) to the control. TypeError is expected [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_invalid_cookie[-1] | 4.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:662 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:665 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:673 Put an invalid cookie (-1) to the control. TypeError is expected [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_abandon_with_zero_size | 0.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:706 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:709 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_pagedsizelimit_success | 0.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 20. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:755 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e75043a0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:763 10 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'20'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_nspagedsizelimit[5-15-PASS] | 0.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to 15. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:818 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:829 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71e2730>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:831 10 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to None. Previous value - b'15'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_nspagedsizelimit[15-5-SIZELIMIT_EXCEEDED] | 0.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 15. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to 5. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:818 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:825 Expect to fail with SIZELIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21f4387f40>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'15'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to None. Previous value - b'5'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_paged_limits[conf_attr_values0-ADMINLIMIT_EXCEEDED] | 4.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 100. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:890 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:897 Expect to fail with ADMINLIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21f9273370>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_paged_limits[conf_attr_values1-PASS] | 4.91 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 120. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 122. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:890 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:901 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e44de850>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:903 101 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'122'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'120'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_paged_user_limits[conf_attr_values0-ADMINLIMIT_EXCEEDED] | 4.66 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:964 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:971 Expect to fail with ADMINLIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e479a400>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to None. Previous value - b'100'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to None. Previous value - b'100'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. | |||
Passed | suites/paged_results/paged_results_test.py::test_search_paged_user_limits[conf_attr_values1-PASS] | 5.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to 120. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to 122. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:964 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:975 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e79444c0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:977 101 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to None. Previous value - b'120'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to None. Previous value - b'122'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. | |||
Passed | suites/paged_results/paged_results_test.py::test_ger_basic | 0.86 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e2ba77f0>, <ldap.controls.simple.GetEffectiveRightsControl object at 0x7f21e72056a0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1015 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1017 Check for attributeLevelRights [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1020 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users | |||
Passed | suites/paged_results/paged_results_test.py::test_multi_suffix_search | 8.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:87 Adding suffix:o=test_parent and backend: parent_base [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:96 Adding ACI to allow our test user to search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:108 Adding suffix:ou=child,o=test_parent and backend: child_base -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1051 Clear the access log [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: o=test_parent; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e2932610>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1062 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1065 Restart the server to flush the logs [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1071 Assert that last pr_cookie == -1 and others pr_cookie == 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1076 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[None] | 0.95 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71e28b0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[-1] | 0.97 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to -1. Previous value - b'-1'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71d7ac0>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'-1'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[1000] | 1.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 1000. Previous value - b'-1'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f21e71e5160>]. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1000'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_failure[0] | 1.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 0. Previous value - b'-1'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1154 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1157 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1172 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'0'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_failure[1] | 1.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 1. Previous value - b'-1'. Modified suffix - cn=config. [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1154 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1157 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1172 Remove added users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1'. Modified suffix - cn=config. | |||
Passed | suites/password/password_policy_test.py::test_password_change_section | 1.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/password_policy_test.py::test_password_syntax_section | 3.42 | |
No log output captured. | |||
Passed | suites/password/password_policy_test.py::test_password_history_section | 8.72 | |
No log output captured. | |||
Passed | suites/password/password_policy_test.py::test_password_minimum_age_section | 11.26 | |
No log output captured. | |||
Passed | suites/password/password_policy_test.py::test_account_lockout_and_lockout_duration_section | 6.41 | |
No log output captured. | |||
Passed | suites/password/password_policy_test.py::test_grace_limit_section | 17.03 | |
No log output captured. | |||
Passed | suites/password/password_policy_test.py::test_additional_corner_cases | 0.86 | |
No log output captured. | |||
Passed | suites/password/password_test.py::test_password_delete_specific_password | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.password_test:password_test.py:44 Running test_password_delete_specific_password... [32mINFO [0m tests.suites.password.password_test:password_test.py:65 test_password_delete_specific_password: PASSED | |||
Passed | suites/password/pbkdf2_upgrade_plugin_test.py::test_pbkdf2_upgrade | 9.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_bypass | 0.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:46 test_pwdAdmin_init: Creating Password Administrator entries... [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:85 test_pwdAdmin_init: Configuring password policy... [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:100 Add aci to allow password admin to add/update entries... [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:115 test_pwdAdmin_init: Bind as the Password Administrator (before activating)... [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:128 test_pwdAdmin_init: Attempt to add entries with invalid passwords, these adds should fail... -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:167 test_pwdAdmin: Activate the Password Administator... | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_no_admin | 0.08 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_modify | 0.19 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_group | 0.16 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_config_validation | 0.02 | |
No log output captured. | |||
Passed | suites/password/pwdModify_test.py::test_pwd_modify_with_different_operation | 14.53 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:101 Attempt for Password change for an entry that does not exists [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:103 Attempt for Password change for an entry that exists [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:105 Attempt for Password change to old for an entry that exists [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:107 Attempt for Password Change with Binddn as testuser but with wrong old password [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:111 Attempt for Password Change with Binddn as testuser [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:113 Attempt for Password Change without giving newpassword [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:116 Change password to NEW_PASSWD i.e newpassword [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:119 Check binding with old/new password [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:124 Change password back to OLD_PASSWD i.e password [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:127 Checking password change Operation using a Non-Secure connection [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:131 Testuser attempts to change password for testuser2(userPassword attribute is Set) [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:147 Directory Manager attempts to change password for testuser2(userPassword attribute is Set) [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:150 Changing userPassword attribute to Undefined for testuser2 [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:152 Testuser attempts to change password for testuser2(userPassword attribute is Undefined) [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:156 Directory Manager attempts to change password for testuser2(userPassword attribute is Undefined) [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:159 Create a password syntax policy. Attempt to change to password that violates that policy [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:163 Reset password syntax policy [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:165 userPassword mod with control results in ber decode error [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:169 Reseting the testuser's password | |||
Passed | suites/password/pwdModify_test.py::test_pwd_modify_with_password_policy | 0.15 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:44 Change the pwd storage type to clear and change the password once to refresh it(for the rest of tests -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:192 Change the password and check that a new entry has been added to the history [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:196 Try changing password to one stored in history. Should fail [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:199 Change the password several times in a row, and try binding after each change | |||
Passed | suites/password/pwdModify_test.py::test_pwd_modify_with_subsuffix | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:228 Add a new SubSuffix [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:235 Add the container & create password policies [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:243 Add two New users under the SubEntry [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:265 Changing password of uid=test_user0,ou=TestPeople_bug834047,dc=example,dc=com to newpassword [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:270 Try to delete password- case when password is specified [32mINFO [0m tests.suites.password.pwdModify_test:pwdModify_test.py:274 Try to delete password- case when password is not specified | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_pwd_reset | 1.72 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:39 Adding test user {} | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-off-UNWILLING_TO_PERFORM] | 2.18 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:66 Create password policy for subtree ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:69 Create password policy for user uid=simplepaged_test,ou=people,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "on" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "off" - uid=simplepaged_test,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-off-UNWILLING_TO_PERFORM] | 2.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "off" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "off" - uid=simplepaged_test,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-on-False] | 2.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "off" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "on" - uid=simplepaged_test,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-on-False] | 2.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "on" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "on" - uid=simplepaged_test,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_pwd_min_age | 14.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:219 Set passwordminage to "10" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:224 Set passwordminage to "10" - uid=simplepaged_test,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:228 Set passwordminage to "10" - cn=config [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:233 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:239 Bind as user and modify userPassword straight away after previous change [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:244 Wait 12 second [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:248 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:256 Bind as DM | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_must_change | 2.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:109 Configure password policy with paswordMustChange set to "on" [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:120 Reset userpassword as Directory Manager [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:125 Bind should return ctrl with error code 2 (changeAfterReset) | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_expired_grace_limit | 6.56 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:159 Configure password policy with grace limit set tot 2 [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:164 Change password and wait for it to expire [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:168 Bind and use up one grace login (only one left) [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:178 Use up last grace login, should get control [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:184 No grace login available, bind should fail, and no control should be returned | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_expiring_with_warning | 5.44 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:206 Configure password policy [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:211 Change password and get controls [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:222 Warning has been sent, try the bind again, and recheck the expiring time | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_expiring_with_no_warning | 6.77 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:250 Configure password policy [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:255 When the warning is less than the max age, we never send expiring control response [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:262 Turn on sending expiring control regardless of warning [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:274 Check expiring time again [32mINFO [0m tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:285 Turn off sending expiring control (restore the default setting) | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_no_restrictions[off-off] | 1.17 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:39 Adding user uid=buser,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:46 Adding an aci for the bind user [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:71 Enable fine-grained policy [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:132 Make sure an entry added to ou=people has no password syntax restrictions. | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_no_restrictions[on-off] | 1.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:132 Make sure an entry added to ou=people has no password syntax restrictions. | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_no_restrictions[off-on] | 1.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:132 Make sure an entry added to ou=people has no password syntax restrictions. | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_restrictions | 1.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:173 Set nsslapd-pwpolicy-inherit-global to on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:174 Set passwordCheckSyntax to on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is on [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:187 Bind as test user [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:192 Try to add user with a short password (<9) [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:197 Try to add user with a long password (>9) [32mINFO [0m tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:201 Bind as DM user | |||
Passed | suites/password/pwdPolicy_token_test.py::test_token_lengths | 3.51 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 4 token (test) [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 12, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'} [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 6 token (test_u) [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 16, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'} [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 10 token (test_user1) [32mINFO [0m tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 20, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'} | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[ ] | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:211 An invalid value is being tested [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:215 Now check the value is unchanged [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:218 Invalid value was rejected correctly | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[junk123] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:211 An invalid value is being tested [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to junk123 [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:215 Now check the value is unchanged [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:218 Invalid value junk123 was rejected correctly | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[on] | 1.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:220 A valid value is being tested [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to on [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:223 Now check that the value has been changed [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:226 passwordSendExpiringTime is now set to on [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:228 Set passwordSendExpiringTime back to the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[off] | 1.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:220 A valid value is being tested [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:223 Now check that the value has been changed [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:226 passwordSendExpiringTime is now set to off [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:228 Set passwordSendExpiringTime back to the default value [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_expiry_time | 0.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:259 Get the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:260 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:264 Check whether the time is returned [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:267 user's password will expire in 172800 seconds [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:270 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordSendExpiringTime-off] | 0.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:302 Set configuration parameter [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:305 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:309 Check the state of the control [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:311 Password Expiry warning time is not returned as passwordSendExpiringTime is set to off [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:317 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordWarning-3600] | 0.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:302 Set configuration parameter [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordWarning to 3600 [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:305 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:309 Check the state of the control [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:314 (uid=tuser,ou=people,dc=example,dc=com) password will expire in 172799 seconds [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:317 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_with_different_password_states | 0.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:350 Expire user's password by changing passwordExpirationTime timestamp [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:354 Old passwordExpirationTime: 20201002005546Z [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:357 New passwordExpirationTime: 20200901005546Z [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:360 Attempting to bind with user uid=tuser,ou=people,dc=example,dc=com and retrive the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:364 Bind Failed, error: <ExceptionInfo INVALID_CREDENTIALS({'msgtype': 97, 'msgid': 73, 'result': 49, 'desc': 'Invalid credentials', 'ctrls': [('1.3.6.1.4.1.....8.5.1', 0, b'0\x84\x00\x00\x00\x03\x81\x01\x00'), ('2.16.840.1.113730.3.4.4', 0, b'0')], 'info': 'password expired!'}) tblen=10> [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:366 Rebinding as DM [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:369 Reverting back user's passwordExpirationTime [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:373 Rebinding with uid=tuser,ou=people,dc=example,dc=com and retrieving the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:376 Check that the control is returned [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:379 user's password will expire in 172800 seconds [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:382 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_default_behavior | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:85 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:91 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:408 Binding with uid=tuser,ou=people,dc=example,dc=com and requesting the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:412 Check that no control is returned [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:415 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_when_maxage_and_warning_are_the_same | 2.17 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:85 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:91 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:444 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:448 First change user's password to reset its password expiration time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:455 Binding with uid=tuser,ou=people,dc=example,dc=com and requesting the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:459 Check that control is returned evenif passwordSendExpiringTime is set to off [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:463 user's password will expire in 86400 seconds [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:465 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_with_local_policy | 0.13 | |
-----------------------------Captured stderr setup------------------------------ Container entries added. -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:143 Setting fine grained policy for user (uid=tuser,ou=people,dc=example,dc=com) -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:492 Attempting to get password expiry warning time for user uid=tuser,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:495 Check that the control is not returned [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:498 Password expiry warning time is not returned [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:500 Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_search_shadowWarning_when_passwordWarning_is_lower | 0.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:532 Bind as cn=Directory Manager [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:535 Creating test user [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:540 Setting passwordWarning to smaller value than 86400 [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:543 Bind as test user [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:546 Check if attribute shadowWarning is present | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_password_expire_works | 1.72 | |
No log output captured. | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CLEAR] | 0.82 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CLEAR PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CRYPT PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-MD5] | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CRYPT-MD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-SHA256] | 0.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CRYPT-SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-SHA512] | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CRYPT-SHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[MD5] | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test MD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA256] | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA384] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA384 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA512] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SMD5] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SMD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA] | 0.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SSHA PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA256] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SSHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA384] | 0.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SSHA384 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA512] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SSHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[PBKDF2_SHA256] | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test PBKDF2_SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[DEFAULT] | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test DEFAULT PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pbkdf2_algo | 2.66 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_algo_test:pwd_algo_test.py:170 Test PASSED | |||
Passed | suites/password/pwd_lockout_bypass_test.py::test_lockout_bypass | 0.41 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/pwd_log_test.py::test_hide_unhashed_pwd | 4.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwd_log_test:pwd_log_test.py:79 Test complete | |||
Passed | suites/password/pwp_gracel_test.py::test_password_gracelimit_section | 13.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/pwp_history_test.py::test_history_is_not_overwritten | 4.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:77 Configured password policy. | |||
Passed | suites/password/pwp_history_test.py::test_basic | 7.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:152 Configured password policy. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:170 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:201 Correct number of passwords found in history. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:212 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:222 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:232 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:254 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:267 Configured passwordInHistory to 0. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:283 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:299 Configured passwordInHistory to 2. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:312 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:326 Test suite PASSED. | |||
Passed | suites/password/pwp_test.py::test_passwordchange_to_no | 0.58 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/pwp_test.py::test_password_check_syntax | 0.58 | |
No log output captured. | |||
Passed | suites/password/pwp_test.py::test_too_big_password | 0.64 | |
No log output captured. | |||
Passed | suites/password/pwp_test.py::test_pwminage | 3.13 | |
No log output captured. | |||
Passed | suites/password/pwp_test.py::test_invalid_credentials | 7.34 | |
No log output captured. | |||
Passed | suites/password/pwp_test.py::test_expiration_date | 1.22 | |
No log output captured. | |||
Passed | suites/password/pwp_test.py::test_passwordlockout | 2.45 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_local_password_policy | 0.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/regression_of_bugs_test.py::test_passwordexpirationtime_attribute | 3.06 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_admin_group_to_modify_password | 1.59 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_password_max_failure_should_lockout_password | 0.14 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_pwd_update_time_attribute | 3.21 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_password_track_update_time | 7.33 | |
No log output captured. | |||
Passed | suites/password/regression_of_bugs_test.py::test_signal_11 | 0.05 | |
No log output captured. | |||
Passed | suites/password/regression_test.py::test_pwp_local_unlock | 4.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.password.regression_test:regression_test.py:68 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to on [32mINFO [0m tests.suites.password.regression_test:regression_test.py:75 Configure subtree password policy for ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.regression_test:regression_test.py:98 Adding user-uid=UIDpwtest1,ou=people,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:137 Verify user can bind... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:140 Test passwordUnlock default - user should be able to reset password after lockout [32mINFO [0m tests.suites.password.regression_test:regression_test.py:151 Verify account is locked [32mINFO [0m tests.suites.password.regression_test:regression_test.py:155 Wait for lockout duration... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:158 Check if user can now bind with correct password | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[SNpwtest1] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[UIDpwtest1] | 0.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[MAILpwtest1@redhat.com] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[GNpwtest1] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZZ] | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZCNpwtest1] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1] | 0.39 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1Z] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1Z] | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1] | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZ] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1ZZ] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1] | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZ] | 0.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1ZZZ] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1] | 0.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[SNpwtest1] | 0.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[UIDpwtest1] | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[MAILpwtest1@redhat.com] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_global_vs_local[GNpwtest1] | 0.24 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZZ] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZCNpwtest1] | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1Z] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1Z] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZ] | 0.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1ZZ] | 0.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZ] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1ZZZ] | 0.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/password/regression_test.py::test_unhashed_pw_switch | 32.98 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:257 Enable plugins... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:272 create users and group... [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] | |||
Passed | suites/plugins/acceptance_test.py::test_acctpolicy | 15.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/plugins/acceptance_test.py::test_attruniq | 17.73 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_automember | 25.32 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_dna | 17.67 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_linkedattrs | 22.82 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_memberof | 34.35 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_mep | 17.97 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_passthru | 21.83 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_referint | 12.84 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_retrocl | 22.62 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_rootdn | 34.53 | |
No log output captured. | |||
Passed | suites/plugins/accpol_test.py::test_glact_inact | 27.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.utils:accpol_test.py:35 Configuring Global account policy plugin, pwpolicy attributes and restarting the server -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:348 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:351 Sleep for 10 secs to check if account is not inactivated, expected value 0 [32mINFO [0m lib389.utils:accpol_test.py:353 Account should not be inactivated since AccountInactivityLimit not exceeded [32mINFO [0m lib389.utils:accpol_test.py:356 Sleep for 3 more secs to check if account is inactivated [32mINFO [0m lib389.utils:accpol_test.py:360 Sleep +10 secs to check if account glinactusr3 is inactivated [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glremv_lastlogin | 19.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:394 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:396 Sleep for 6 secs to check if account is not inactivated, expected value 0 [32mINFO [0m lib389.utils:accpol_test.py:398 Account should not be inactivated since AccountInactivityLimit not exceeded [32mINFO [0m lib389.utils:accpol_test.py:254 Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account [32mINFO [0m lib389.utils:accpol_test.py:401 Sleep for 7 more secs to check if account is inactivated [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:405 Check if account is activated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glact_login | 23.83 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:434 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:436 Sleep for 13 secs to check if account is inactivated, expected error 19 [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:440 Check if account is activated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_limit | 122.48 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:492 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:494 Sleep for 9 secs to check if account is not inactivated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:516 Check if account is activated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnologin_attr | 85.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:575 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:576 Set attribute StateAttrName to createTimestamp, loginTime attr wont be considered [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:580 Sleep for 9 secs to check if account is not inactivated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:605 Set attribute StateAttrName to lastLoginTime, the default [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:609 Check if account is activated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnoalt_stattr | 56.93 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:640 Set attribute altStateAttrName to 1.1 [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:644 Sleep for 13 secs to check if account is not inactivated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:647 lastLoginTime attribute is added from the above ldap bind by userdn [32mINFO [0m lib389.utils:accpol_test.py:254 Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glattr_modtime | 44.59 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:687 Set attribute altStateAttrName to modifyTimestamp [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:691 Sleep for 13 secs to check if account is inactivated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:202 Check ModifyTimeStamp attribute present for user [32mINFO [0m lib389.utils:accpol_test.py:237 Enable account by replacing cn attribute value, value of modifyTimeStamp changed [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:254 Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnoalt_nologin | 50.93 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:742 Set attribute altStateAttrName to 1.1 [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:744 Set attribute alwaysrecordlogin to No [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:748 Sleep for 13 secs to check if account is not inactivated, expected 0 [32mINFO [0m lib389.utils:accpol_test.py:753 Set attribute altStateAttrName to createTimestamp [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:758 Reset the default attribute values [32mINFO [0m lib389.utils:accpol_test.py:189 Modify attribute value for a given DN [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_nsact | 23.26 | |
------------------------------Captured stderr call------------------------------ Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:798 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:800 Sleep for 3 secs to check if account is not inactivated, expected value 0 [32mINFO [0m lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl [32mINFO [0m lib389.utils:accpol_test.py:166 Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' [32mINFO [0m lib389.utils:accpol_test.py:803 Sleep for 10 secs to check if account is inactivated, expected value 19 [32mINFO [0m lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl [32mINFO [0m lib389.utils:accpol_test.py:166 Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' [32mINFO [0m lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl [32mINFO [0m lib389.utils:accpol_test.py:166 Running ns-accountstatus.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com - inactivated (inactivity limit exceeded).\n' [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl [32mINFO [0m lib389.utils:accpol_test.py:166 Running ns-accountstatus.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com - activated.\n' [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_acclock | 40.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:843 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:845 Sleep for 3 secs and try invalid binds to lockout the user [32mINFO [0m lib389.utils:accpol_test.py:118 Lockout user account by attempting invalid password binds [32mINFO [0m lib389.utils:accpol_test.py:849 Sleep for 10 secs to check if account is inactivated, expected value 19 [32mINFO [0m lib389.utils:accpol_test.py:853 Add lastLoginTime to activate the user account [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:857 Checking if account is unlocked after passwordlockoutduration, but inactivated after accountInactivityLimit [32mINFO [0m lib389.utils:accpol_test.py:118 Lockout user account by attempting invalid password binds [32mINFO [0m lib389.utils:accpol_test.py:861 Account is expected to be unlocked after 5 secs of passwordlockoutduration [32mINFO [0m lib389.utils:accpol_test.py:865 Sleep 13s and check if account inactivated based on accountInactivityLimit, expected 19 [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnact_pwexp | 49.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:908 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs [32mINFO [0m lib389.utils:accpol_test.py:909 Passwordmaxage is set to 9. Password will expire in 9 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:912 Sleep for 9 secs and check if password expired [32mINFO [0m lib389.utils:accpol_test.py:918 Add lastLoginTime to activate the user account [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:141 Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:141 Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:929 Sleep for 4 secs and check if account is now inactivated, expected error 19 [32mINFO [0m lib389.utils:accpol_test.py:141 Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:141 Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locact_inact | 31.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:80 Adding Local account policy plugin configuration entries -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:980 AccountInactivityLimit set to 10. Account will be inactivated if not accessed in 10 secs [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:982 Sleep for 9 secs to check if account is not inactivated, expected value 0 [32mINFO [0m lib389.utils:accpol_test.py:984 Account should not be inactivated since AccountInactivityLimit not exceeded [32mINFO [0m lib389.utils:accpol_test.py:986 Sleep for 2 more secs to check if account is inactivated [32mINFO [0m lib389.utils:accpol_test.py:989 Sleep +9 secs to check if account inactusr3 is inactivated [32mINFO [0m lib389.utils:accpol_test.py:992 Add lastLoginTime attribute to all users and check if its activated [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locinact_modrdn | 27.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:1026 Account should not be inactivated since the subtree is not configured [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:1028 Sleep for 11 secs to check if account is not inactivated, expected value 0 [32mINFO [0m lib389.utils:accpol_test.py:1031 Moving users from ou=groups to ou=people subtree [32mINFO [0m lib389.utils:accpol_test.py:1039 Then wait for 11 secs and check if entries are inactivated [32mINFO [0m lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locact_modrdn | 15.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:accpol_test.py:1071 Account should be inactivated since the subtree is configured [32mINFO [0m lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs [32mINFO [0m lib389.utils:accpol_test.py:1073 Sleep for 11 secs to check if account is inactivated, expected value 19 [32mINFO [0m lib389.utils:accpol_test.py:1076 Moving users from ou=people to ou=groups subtree [32mINFO [0m lib389.utils:accpol_test.py:1083 Sleep for +2 secs and check users from both ou=people and ou=groups subtree [32mINFO [0m lib389.utils:accpol_test.py:290 del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/attr_nsslapd-pluginarg_test.py::test_duplicate_values | 3.60 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:31 Ticket 47431 - 0: Enable 7bit plugin... -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:56 Ticket 47431 - 1: Check 26 duplicate values are treated as one... [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:59 modify_s cn=7-bit check,cn=plugins,cn=config [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:83 line: [29/Sep/2020:21:14:06.239449642 -0400] - WARN - str2entry_dupcheck - 26 duplicate values for attribute type nsslapd-pluginarg2 detected in entry cn=7-bit check,cn=plugins,cn=config. Extra values ignored. [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:84 Expected error "str2entry_dupcheck.* duplicate values for attribute type nsslapd-pluginarg2 detected in entry cn=7-bit check,cn=plugins,cn=config." logged in /var/log/dirsrv/slapd-standalone1/errors [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:86 Ticket 47431 - 1: done | |||
Passed | suites/plugins/attr_nsslapd-pluginarg_test.py::test_multiple_value | 5.91 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:111 Ticket 47431 - 2: Check two values belonging to one arg is fixed... [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [29/Sep/2020:21:14:10.865385307 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 0: uid [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[0] uid [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 uid was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [29/Sep/2020:21:14:10.869449806 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 1: mail [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[1] mail [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 mail was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [29/Sep/2020:21:14:10.871900037 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 2: userpassword [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[2] userpassword [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 userpassword was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [29/Sep/2020:21:14:10.874583256 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 3: , [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[3] , [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 , was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [29/Sep/2020:21:14:10.877157528 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 4: dc=example,dc=com [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[4] dc=example,dc=com [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 dc=example,dc=com was logged [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:142 Ticket 47431 - 2: done | |||
Passed | suites/plugins/attr_nsslapd-pluginarg_test.py::test_missing_args | 4.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:170 Ticket 47431 - 3: Check missing args are fixed... [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 uid was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 mail was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 userpassword was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 , was logged [35mDEBUG [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 dc=example,dc=com was logged [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:203 Ticket 47431 - 3: done [32mINFO [0m tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:204 Test complete | |||
Passed | suites/plugins/cos_test.py::test_cos_operational_default | 4.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m lib389.utils:cos_test.py:27 Adding user (uid=user_0,ou=people,dc=example,dc=com): [32mINFO [0m lib389.utils:cos_test.py:153 Returned telephonenumber (exp. real): b'1234 is real' [32mINFO [0m lib389.utils:cos_test.py:154 Returned telephonenumber: 8 [32mINFO [0m lib389.utils:cos_test.py:160 Returned l (exp. real): b'here is real' [32mINFO [0m lib389.utils:cos_test.py:161 Returned l: 8 [32mINFO [0m lib389.utils:cos_test.py:170 Returned seealso (exp. virtual): b'dc=virtual,dc=example,dc=com' [32mINFO [0m lib389.utils:cos_test.py:171 Returned seealso: 3 [32mINFO [0m lib389.utils:cos_test.py:180 Returned description (exp. virtual): b'desc is virtual' [32mINFO [0m lib389.utils:cos_test.py:181 Returned description: 8 [32mINFO [0m lib389.utils:cos_test.py:191 Returned title (exp. real): b'title is real' [32mINFO [0m lib389.utils:cos_test.py:212 Returned title(exp. virt): b'title is virtual 1' [32mINFO [0m lib389.utils:cos_test.py:212 Returned title(exp. virt): b'title is virtual 0' | |||
Passed | suites/plugins/deref_aci_test.py::test_deref_and_access_control | 0.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.deref_aci_test:deref_aci_test.py:133 Check, that the dereference search result does not have userpassword | |||
Passed | suites/plugins/dna_test.py::test_dnatype_only_valid | 4.52 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/plugins/entryusn_test.py::test_entryusn_no_duplicates | 5.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/plugins/entryusn_test.py::test_entryusn_is_same_after_failure | 5.42 | |
No log output captured. | |||
Passed | suites/plugins/entryusn_test.py::test_entryusn_after_repl_delete | 3.70 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b1131072-8418-4976-b476-b7ee92cc9f1b / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f80a4d25-d3e3-4733-8806-e4eb92e7d45e / got description=b1131072-8418-4976-b476-b7ee92cc9f1b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/plugins/managed_entry_test.py::test_binddn_tracking | 2.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/plugins/managed_entry_test.py::test_mentry01 | 9.89 | |
No log output captured. | |||
Passed | suites/plugins/managed_entry_test.py::test_managed_entry_removal | 4.62 | |
No log output captured. | |||
Passed | suites/plugins/memberof_test.py::test_betxnpostoperation_replace | 4.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/plugins/memberof_test.py::test_memberofgroupattr_add | 0.01 | |
No log output captured. | |||
Passed | suites/plugins/memberof_test.py::test_enable | 4.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:181 Enable MemberOf plugin | |||
Passed | suites/plugins/memberof_test.py::test_member_add | 0.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofenh1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofenh2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:211 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:212 Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:215 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:216 Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_gr1 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:246 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_gr2 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:278 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_all | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:310 Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:314 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' | |||
Passed | suites/plugins/memberof_test.py::test_member_after_restart | 8.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:349 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:353 Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:364 Remove uniqueMember as a memberofgrpattr [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:371 Assert that this change of configuration did change the already set values [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_memberofgroupattr_uid | 0.14 | |
-------------------------------Captured log call-------------------------------- [1m[31mERROR [0m tests.suites.plugins.memberof_test:memberof_test.py:400 Setting 'memberUid' as memberofgroupattr is rejected (expected) | |||
Passed | suites/plugins/memberof_test.py::test_member_add_duplicate_usr1 | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:422 Try b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) [1m[31mERROR [0m tests.suites.plugins.memberof_test:memberof_test.py:429 b'uid=user_memofenh1,ou=people,dc=example,dc=com' already member of b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' --> fail (expected) | |||
Passed | suites/plugins/memberof_test.py::test_member_add_duplicate_usr2 | 0.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:450 Check initial status [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:460 Try b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (member) [1m[31mERROR [0m tests.suites.plugins.memberof_test:memberof_test.py:467 b'uid=user_memofenh2,ou=people,dc=example,dc=com' already member of b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' --> fail (expected) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:470 Check final status [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_uniquemember_same_user | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:557 Check initial status [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:569 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:570 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:582 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is not memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:586 Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:613 Checking final status [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_not_exists | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:671 Checking Initial status [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp015,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:691 Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp015,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:692 Update b'uid=user_dummy2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp015,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_member_not_exists_complex | 0.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp016,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:806 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:807 Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:835 Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:845 Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_1 | 0.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp017,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1011 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1012 Update b'uid=user_memofuser2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1013 Update b'uid=user_memofuser3,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (memberuid) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_2 | 0.36 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp018,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1261 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1262 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1263 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (memberuid) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1283 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp018,ou=groups,dc=example,dc=com' (member) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:1284 Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is no longer memberof b'cn=group_memofegrp018,ou=groups,dc=example,dc=com' (uniqueMember) [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_3 | 0.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_4 | 0.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_5 | 0.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_6 | 5.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_7 | 0.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_8 | 0.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_9 | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.uniqueMember = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:94 Check b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com'.member = b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' | |||
Passed | suites/plugins/memberof_test.py::test_memberof_auto_add_oc | 0.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from uid=user1,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group,dc=example,dc=com [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:2753 Correctly rejected invalid objectclass [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:2823 Test complete. | |||
Passed | suites/plugins/pluginpath_validation_test.py::test_pluginpath_validation | 0.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.pluginpath_validation_test:pluginpath_validation_test.py:103 Test complete | |||
Passed | suites/plugins/referint_test.py::test_referential_false_failure | 7.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo0,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo1,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo2,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo3,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo4,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo5,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo6,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo7,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo8,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo9,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo10,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo11,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo12,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo13,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo14,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo15,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo16,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo17,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo18,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo19,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo20,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo21,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo22,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo23,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo24,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo25,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo26,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo27,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo28,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo29,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo30,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo31,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo32,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo33,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo34,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo35,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo36,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo37,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo38,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo39,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo40,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo41,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo42,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo43,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo44,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo45,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo46,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo47,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo48,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo49,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo50,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo51,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo52,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo53,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo54,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo55,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo56,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo57,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo58,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo59,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo60,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo61,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo62,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo63,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo64,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo65,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo66,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo67,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo68,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo69,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo70,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo71,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo72,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo73,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo74,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo75,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo76,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo77,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo78,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo79,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo80,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo81,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo82,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo83,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo84,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo85,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo86,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo87,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo88,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo89,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo90,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo91,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo92,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo93,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo94,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo95,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo96,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo97,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo98,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo99,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo100,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo101,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo102,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo103,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo104,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo105,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo106,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo107,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo108,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo109,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo110,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo111,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo112,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo113,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo114,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo115,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo116,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo117,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo118,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo119,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo120,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo121,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo122,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo123,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo124,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo125,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo126,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo127,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo128,dc=example,dc=com): [31mCRITICAL[0m tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo129,dc=example,dc=com): | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_specific_time | 0.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:60 Initializing root DN test suite... [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:70 test_rootdn_init: Initialized root DN test suite. [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:102 Running test_rootdn_access_specific_time... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_day_of_week | 2.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:185 Running test_rootdn_access_day_of_week... [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:202 Today: Wed [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:203 Allowed days: Wed,Thu [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:204 Deny days: Thu,Fri | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip | 2.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:268 Running test_rootdn_access_denied_ip... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_host | 2.58 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:333 Running test_rootdn_access_denied_host... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip | 2.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:400 Running test_rootdn_access_allowed_ip... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_host | 2.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:466 Running test_rootdn_access_allowed_host... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_config_validate | 0.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:575 Add just "rootdn-open-time" | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip_wildcard | 2.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:666 Running test_rootdn_access_denied_ip_wildcard... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip_wildcard | 3.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:712 Running test_rootdn_access_allowed_ip... | |||
Passed | suites/psearch/psearch_test.py::test_psearch | 2.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:psearch_test.py:30 dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 cn=Directory Administrators,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 ou=People,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 ou=Special Users,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 cn=Accounting Managers,ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 cn=HR Managers,ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 cn=QA Managers,ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:30 cn=PD Managers,ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:34 No more results [32mINFO [0m lib389:psearch_test.py:30 cn=group1,ou=Groups,dc=example,dc=com has changed! [32mINFO [0m lib389:psearch_test.py:34 No more results | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[CRYPT] | 0.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA] | 0.27 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA] | 0.05 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA256] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA256] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA384] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA384] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA512] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA512] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[MD5] | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[PBKDF2_SHA256] | 0.05 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_clear_scheme | 0.03 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_two_scheme | 4.90 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_pbkdf2_sha256 | 4.67 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_ssha512 | 5.83 | |
No log output captured. | |||
Passed | suites/referint_plugin/rename_test.py::test_rename_large_subtree | 167.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a81baf5f-588e-4e97-90cf-a5d3b662fff0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7e0e04ad-ae2d-459c-be6e-bd5f4c223727 / got description=a81baf5f-588e-4e97-90cf-a5d3b662fff0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 87ef6722-0038-4c4e-aa69-9417297770ff / got description=7e0e04ad-ae2d-459c-be6e-bd5f4c223727) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a3fe7263-7027-4974-9e8f-846292039d82 / got description=87ef6722-0038-4c4e-aa69-9417297770ff) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/acceptance_test.py::test_add_entry | 10.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect acb383b0-db01-4857-9a7a-2f872a307d2f / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7d4c8dc3-805a-4c9a-8ab2-1a40bd10e593 / got description=acb383b0-db01-4857-9a7a-2f872a307d2f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a799bf9a-ff96-4a85-8a7d-a4e98fd83f9b / got description=7d4c8dc3-805a-4c9a-8ab2-1a40bd10e593) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 69dcfa4a-8c60-44e7-9c12-556a8ffd3bff / got description=a799bf9a-ff96-4a85-8a7d-a4e98fd83f9b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect f27c2b4a-b150-497a-98f0-afd51d87d03f / got description=69dcfa4a-8c60-44e7-9c12-556a8ffd3bff) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5ecfab12-8489-4658-a8fd-d78423122b12 / got description=f27c2b4a-b150-497a-98f0-afd51d87d03f) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5ecfab12-8489-4658-a8fd-d78423122b12 / got description=f27c2b4a-b150-497a-98f0-afd51d87d03f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modify_entry | 3.13 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:44 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:127 Modifying entry uid=mmrepl_test,dc=example,dc=com - add operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:137 Modifying entry uid=mmrepl_test,dc=example,dc=com - replace operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:145 Modifying entry uid=mmrepl_test,dc=example,dc=com - delete operation | |||
Passed | suites/replication/acceptance_test.py::test_delete_entry | 10.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:44 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:167 Deleting entry uid=mmrepl_test,dc=example,dc=com during the test | |||
Passed | suites/replication/acceptance_test.py::test_modrdn_entry[0] | 20.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:191 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:210 Remove entry with new RDN uid=newrdn,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modrdn_entry[1] | 20.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:191 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:210 Remove entry with new RDN uid=newrdn,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modrdn_after_pause | 14.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:236 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:251 Pause all replicas [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:254 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:262 Resume all replicas [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:265 Wait for replication to happen [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:272 Remove entry with new RDN uid=newrdn,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modify_stripattrs | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:294 Modify nsds5replicastripattrs with b'modifiersname modifytimestamp' [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:297 Check nsds5replicastripattrs for b'modifiersname modifytimestamp' | |||
Passed | suites/replication/acceptance_test.py::test_new_suffix | 11.15 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:61 Adding suffix:o=test_repl and backend: repl_base to master1 [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=test_repl [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dtest_repl,cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:61 Adding suffix:o=test_repl and backend: repl_base to master2 [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=test_repl [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dtest_repl,cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:61 Adding suffix:o=test_repl and backend: repl_base to master3 [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=test_repl [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master3/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dtest_repl,cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:61 Adding suffix:o=test_repl and backend: repl_base to master4 [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=test_repl [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master4/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dtest_repl,cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 92d93741-fffa-402b-b750-7906290e4296 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ca862692-2fd0-4f31-9b38-62c97d645d3b / got description=92d93741-fffa-402b-b750-7906290e4296) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect da88a2fb-dedf-4bcc-a6c0-14d1fad78c1a / got description=ca862692-2fd0-4f31-9b38-62c97d645d3b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c95d7dac-c626-43b6-a563-d1bbcdf50ce1 / got description=da88a2fb-dedf-4bcc-a6c0-14d1fad78c1a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/acceptance_test.py::test_many_attrs | 20.17 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:352 Modifying entry uid=mmrepl_test,dc=example,dc=com - 10 add operations [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:356 Check that everything was properly replicated after an add operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:361 Modifying entry uid=mmrepl_test,dc=example,dc=com - 4 delete operations for [b'test0', b'test4', b'test7', b'test9'] [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:365 Check that everything was properly replicated after a delete operation | |||
Passed | suites/replication/acceptance_test.py::test_double_delete | 10.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:44 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:385 Deleting entry uid=mmrepl_test,dc=example,dc=com from master1 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:388 Deleting entry uid=mmrepl_test,dc=example,dc=com from master2 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:392 Entry uid=mmrepl_test,dc=example,dc=com wasn't found master2. It is expected. [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:394 Make searches to check if server is alive | |||
Passed | suites/replication/acceptance_test.py::test_password_repl_error | 22.98 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:40 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:415 Clean the error log [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:418 Set replication loglevel [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:421 Modifying entry uid=mmrepl_test,dc=example,dc=com - change userpassword on master 2 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:429 Restart the servers to flush the logs [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:438 Check the error log for the error with uid=mmrepl_test,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_invalid_agmt | 0.12 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m lib389:agreement.py:1026 Failed to add replication agreement: {'msgtype': 105, 'msgid': 5, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []} [32mINFO [0m lib389:acceptance_test.py:463 Invalid repl agreement correctly rejected | |||
Passed | suites/replication/acceptance_test.py::test_warining_for_invalid_replica | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:493 Set nsds5ReplicaBackoffMin to 20 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:496 Set nsds5ReplicaBackoffMax to 10 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:498 Resetting configuration: nsds5ReplicaBackoffMin [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:500 Check the error log for the error | |||
Passed | suites/replication/acceptance_test.py::test_csngen_task | 11.02 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2b2fc206-1099-4aeb-9896-de54d7e017c2 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b4afd074-478e-4575-a49b-caf826123964 / got description=2b2fc206-1099-4aeb-9896-de54d7e017c2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:522 Check the error log contains strings showing csn generator is tested | |||
Passed | suites/replication/acceptance_test.py::test_csnpurge_large_valueset | 6.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:573 nsds5ReplicaPurgeDelay to 5 | |||
Passed | suites/replication/cascading_test.py::test_basic_with_hub | 15.96 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:515 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect 9a541e30-b76a-4932-bf96-d9b2d16c8dad / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2195 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 6018aa53-bbdc-495d-bb0d-e4c979dcb35b / got description=9a541e30-b76a-4932-bf96-d9b2d16c8dad) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cascading_test:cascading_test.py:45 update cn=101,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal [32mINFO [0m tests.suites.replication.cascading_test:cascading_test.py:45 update cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 55aedb2a-0cec-448c-b565-d7bbc5ebd816 / got description=6018aa53-bbdc-495d-bb0d-e4c979dcb35b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0e6844b7-7826-4a2d-b66d-fefb99dd8c66 / got description=55aedb2a-0cec-448c-b565-d7bbc5ebd816) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect cc52461a-114d-4610-9cd1-4cc302637304 / got description=0e6844b7-7826-4a2d-b66d-fefb99dd8c66) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working | |||
Passed | suites/replication/changelog_test.py::test_dsconf_dump_changelog_files_removed | 3.81 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5a3208e2-11f9-43c0-874b-1f0e06f0e5b2 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 24a5d9ec-80c9-41e5-bd47-68d679d3b1fd / got description=5a3208e2-11f9-43c0-874b-1f0e06f0e5b2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:222 Remove .ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:222 Remove .done files, if present in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:386 Use dsconf dump-changelog with invalid parameters [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:388 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'badpasswd', 'replication', 'dump-changelog'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:391 output message : b'Error: 97 - 1 - 49 - Invalid credentials - [] - Invalid credentials\n' [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:396 Use dsconf replication changelog without -l option: no generated ldif files should be present in /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:398 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'password', 'replication', 'dump-changelog'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:403 Wait for all dsconf dump-changelog files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:406 Check if dsconf dump-changelog generated .ldif.done files are present - should not [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:412 All dsconf dump-changelog generated .ldif files have been successfully removed from /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:415 Use dsconf replication changelog with -l option: generated ldif files should be kept in /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:417 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'password', 'replication', 'dump-changelog', '-l'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:422 Wait for all dsconf dump-changelog files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:425 Check if dsconf dump-changelog generated .ldif.done files are present - should be [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:429 Success : ldif file /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif.done is present | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog | 0.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:452 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'modify', 'add', 'modrdn', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'modify', 'add', 'modrdn', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog_online_backup | 6.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:479 Run db2bak script to take database backup [32mINFO [0m lib389:tasks.py:616 Backup task backup_09292020_213620 completed successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:491 Database backup is created successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:496 Run bak2db to restore directory server [32mINFO [0m lib389:tasks.py:670 Restore task restore_09292020_213622 completed successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:503 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:97 Existing changelog ldif file: /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif removed [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'modify', 'add', 'modrdn', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'modify', 'add', 'modrdn', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog_offline_backup | 6.54 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:532 Run db2bak to take database backup [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:539 Run bak2db to restore directory server [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:552 Database backup is created successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:557 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:97 Existing changelog ldif file: /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif removed [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/4c78ed05-02bd11eb-9b5fa907-1069b18f_cl.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'modify', 'add', 'modrdn', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'modify', 'add', 'modrdn', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_changelog_maxage | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:144 Testing Ticket 47669 - Test duration syntax in the changelogs [32mINFO [0m lib389:changelog_test.py:147 Bind as cn=Directory Manager -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:579 1. Test nsslapd-changelogmaxage in cn=changelog5,cn=config [32mINFO [0m lib389:changelog_test.py:582 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogmaxage: -123 -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:186 Expectedly failed to add nsslapd-changelogmaxage: -123 to cn=changelog,cn=userRoot,cn=ldbm database,cn=plugins,cn=config: error Server is unwilling to perform [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogmaxage: xyz -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:186 Expectedly failed to add nsslapd-changelogmaxage: xyz to cn=changelog,cn=userRoot,cn=ldbm database,cn=plugins,cn=config: error Server is unwilling to perform | |||
Passed | suites/replication/changelog_test.py::test_ticket47669_changelog_triminterval | 0.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:612 2. Test nsslapd-changelogtrim-interval in cn=changelog5,cn=config [32mINFO [0m lib389:changelog_test.py:615 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogtrim-interval: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogtrim-interval: -123 -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:186 Expectedly failed to add nsslapd-changelogtrim-interval: -123 to cn=changelog,cn=userRoot,cn=ldbm database,cn=plugins,cn=config: error Server is unwilling to perform [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogtrim-interval: xyz -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:186 Expectedly failed to add nsslapd-changelogtrim-interval: xyz to cn=changelog,cn=userRoot,cn=ldbm database,cn=plugins,cn=config: error Server is unwilling to perform | |||
Passed | suites/replication/changelog_test.py::test_retrochangelog_maxage | 0.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:681 4. Test nsslapd-changelogmaxage in cn=Retro Changelog Plugin,cn=plugins,cn=config [32mINFO [0m lib389:changelog_test.py:684 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:174 Test nsslapd-changelogmaxage: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogmaxage: -123 -- invalid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:181 Test nsslapd-changelogmaxage: xyz -- invalid [32mINFO [0m lib389:changelog_test.py:696 ticket47669 was successfully verified. | |||
Passed | suites/replication/changelog_test.py::test_retrochangelog_trimming_crash | 22.24 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:720 1. Test retroCL trimming crash in cn=Retro Changelog Plugin,cn=plugins,cn=config [32mINFO [0m lib389:changelog_test.py:724 ticket50736 start verification [32mINFO [0m lib389:changelog_test.py:740 ticket 50736 was successfully verified. | |||
Passed | suites/replication/changelog_trimming_test.py::test_max_age | 14.55 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:90 Testing changelog triming interval with max age... | |||
Passed | suites/replication/changelog_trimming_test.py::test_max_entries | 12.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:133 Testing changelog triming interval with max entries... | |||
Passed | suites/replication/cleanallruv_max_tasks_test.py::test_max_tasks | 45.39 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect eec87483-8aff-4c14-9fab-8af8d77f3a37 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5d14633e-0276-476d-a458-1936835e047b / got description=eec87483-8aff-4c14-9fab-8af8d77f3a37) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4e7b6f93-16d2-427a-8aad-e27aa94fe0ab / got description=5d14633e-0276-476d-a458-1936835e047b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 25bf7bbe-9715-4091-8415-b731e141ed76 / got description=4e7b6f93-16d2-427a-8aad-e27aa94fe0ab) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 487a7f12-52f1-4ca7-95c2-dbab5419f641 / got description=25bf7bbe-9715-4091-8415-b731e141ed76) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f4eb26c7-4236-4a47-8d38-83ac9c947847 / got description=487a7f12-52f1-4ca7-95c2-dbab5419f641) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created | |||
Passed | suites/replication/cleanallruv_test.py::test_clean | 3.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 88c77462-cab3-45fa-bdfa-b4ace23d33a0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 50bcd1da-a0c6-4807-aedd-bc8db85a524b / got description=88c77462-cab3-45fa-bdfa-b4ace23d33a0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 1c29eff3-a78b-47f3-b281-7e65fafbdc80 / got description=50bcd1da-a0c6-4807-aedd-bc8db85a524b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 28d9deda-41f5-4162-863e-8a3ff1726b5b / got description=1c29eff3-a78b-47f3-b281-7e65fafbdc80) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect efd58a7b-aaa5-453a-a6a0-6aa732cdf3c3 / got description=28d9deda-41f5-4162-863e-8a3ff1726b5b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2bec7c8b-4e3a-44fe-a632-2f8d0f213c07 / got description=efd58a7b-aaa5-453a-a6a0-6aa732cdf3c3) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2bec7c8b-4e3a-44fe-a632-2f8d0f213c07 / got description=efd58a7b-aaa5-453a-a6a0-6aa732cdf3c3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e5cc6b6f-959b-4b64-b798-c0927dbfa7f9 / got description=2bec7c8b-4e3a-44fe-a632-2f8d0f213c07) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect ec1851eb-0c8c-4ed4-81b2-7553fe92e6d0 / got description=e5cc6b6f-959b-4b64-b798-c0927dbfa7f9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 76ff1c73-646c-4660-8905-b8bb7a59a95b / got description=ec1851eb-0c8c-4ed4-81b2-7553fe92e6d0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect fe97abd3-16d6-4054-9cbe-3663ceb2dda4 / got description=76ff1c73-646c-4660-8905-b8bb7a59a95b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 5f41edc5-2866-4cfe-98bb-d25c53898d9d / got description=fe97abd3-16d6-4054-9cbe-3663ceb2dda4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 569ee6cf-7737-4199-9ad8-df2b6a8a4f04 / got description=5f41edc5-2866-4cfe-98bb-d25c53898d9d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8f702afc-6033-4700-8536-b889aa26ceae / got description=569ee6cf-7737-4199-9ad8-df2b6a8a4f04) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7b902ff1-7ac7-433d-b07f-627bb3caadfd / got description=8f702afc-6033-4700-8536-b889aa26ceae) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 700f61f0-80fa-49eb-a234-3750e8439ae3 / got description=7b902ff1-7ac7-433d-b07f-627bb3caadfd) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b5f1a046-041d-40a0-8b74-beeac9a93597 / got description=700f61f0-80fa-49eb-a234-3750e8439ae3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b895de6e-e8b8-45c4-ad70-a97c32b42fd7 / got description=b5f1a046-041d-40a0-8b74-beeac9a93597) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b895de6e-e8b8-45c4-ad70-a97c32b42fd7 / got description=b5f1a046-041d-40a0-8b74-beeac9a93597) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect ee1c0933-73cb-4f62-8a90-dd4f1885592f / got description=b895de6e-e8b8-45c4-ad70-a97c32b42fd7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:204 Running test_clean... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:207 test_clean: disable master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:211 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:221 test_clean: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:225 test_clean PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_clean_restart | 23.61 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b07beb45-3094-4a2f-9f3b-70da65606e7e / got description=fa33d171-1a97-4ad9-a0e3-d0fbff221b5e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect bb4e4810-6a2b-48fd-a93d-6616f98a9850 / got description=b07beb45-3094-4a2f-9f3b-70da65606e7e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 8f1bcccb-861a-476b-b7a6-4ee16b08f847 / got description=bb4e4810-6a2b-48fd-a93d-6616f98a9850) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 223e417e-77c5-457c-9714-5e5e79717383 / got description=8f1bcccb-861a-476b-b7a6-4ee16b08f847) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 831a8950-87b4-44d2-8990-f7b23bfc5659 / got description=223e417e-77c5-457c-9714-5e5e79717383) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 97ddea28-0402-4a42-8818-fcccfce8d7ae / got description=831a8950-87b4-44d2-8990-f7b23bfc5659) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect bf138a93-914c-4fb3-8cd2-5042fe0c4048 / got description=97ddea28-0402-4a42-8818-fcccfce8d7ae) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c0df93a6-1fe8-4418-a075-7ffa25dac62a / got description=bf138a93-914c-4fb3-8cd2-5042fe0c4048) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 0ded7d09-23e6-4a62-8464-11a7cc7046ba / got description=c0df93a6-1fe8-4418-a075-7ffa25dac62a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect aec6e5d3-548a-44aa-9963-9c960598374d / got description=0ded7d09-23e6-4a62-8464-11a7cc7046ba) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0ede409e-c1da-488c-82e3-133f39628edc / got description=aec6e5d3-548a-44aa-9963-9c960598374d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect f3d17d7d-b589-4caa-80b6-b45ee25a3def / got description=0ede409e-c1da-488c-82e3-133f39628edc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:256 Running test_clean_restart... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:259 test_clean: disable master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:267 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:292 test_clean_restart: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:296 test_clean_restart PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_clean_force | 25.77 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ca7fef77-c008-42dd-aad9-9632b792d577 / got description=bbb40472-bb0a-44ba-aa88-0f876468bc20) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a3f21b5a-6d26-4e1c-93f1-cd24451f6a8a / got description=ca7fef77-c008-42dd-aad9-9632b792d577) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 08900f74-c567-4867-af8e-fad5aefe99de / got description=a3f21b5a-6d26-4e1c-93f1-cd24451f6a8a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect bd546ac9-e136-46a8-ab0d-e49068626bbf / got description=08900f74-c567-4867-af8e-fad5aefe99de) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 12a9b2cf-7ac4-4de4-8630-cbd2a5614a6b / got description=bd546ac9-e136-46a8-ab0d-e49068626bbf) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect e87122e3-00f7-43ea-a24b-6ffa80d29233 / got description=12a9b2cf-7ac4-4de4-8630-cbd2a5614a6b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d9b9badb-5d60-40a2-b534-207b2f0247c4 / got description=e87122e3-00f7-43ea-a24b-6ffa80d29233) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect dfb2b029-6b1f-4470-ac69-477c529926f2 / got description=d9b9badb-5d60-40a2-b534-207b2f0247c4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 2f6c1990-e135-486c-9675-972e8014e303 / got description=dfb2b029-6b1f-4470-ac69-477c529926f2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1ec0db27-9342-48b4-9882-e16a157959f4 / got description=2f6c1990-e135-486c-9675-972e8014e303) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f61002fd-d4a2-4362-a8a1-d20aaf02439a / got description=1ec0db27-9342-48b4-9882-e16a157959f4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 1cae12ae-2e24-435b-84a2-f7c37ff984f2 / got description=f61002fd-d4a2-4362-a8a1-d20aaf02439a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:322 Running test_clean_force... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean_force: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:340 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:350 test_clean_force: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:354 test_clean_force PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort | 7.06 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d9ccf983-6e69-41d9-8009-c238af47bb63 / got description=fbd73b04-d0ba-4c9f-88a7-083a97e9554a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 66bd4176-82c2-448b-a545-361aada08c2e / got description=d9ccf983-6e69-41d9-8009-c238af47bb63) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 5a935636-7128-4507-a10c-f0050e3b688c / got description=66bd4176-82c2-448b-a545-361aada08c2e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 6e75d731-e339-4a91-a0c0-74f478f192cb / got description=5a935636-7128-4507-a10c-f0050e3b688c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect f77b7e74-02cb-4559-a740-46e2fbfa0042 / got description=6e75d731-e339-4a91-a0c0-74f478f192cb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect b084b085-1bc8-472c-9add-08e789d6988f / got description=f77b7e74-02cb-4559-a740-46e2fbfa0042) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 757cece1-4b8c-4f01-a957-e5ecb3f5cd6f / got description=b084b085-1bc8-472c-9add-08e789d6988f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2ae30c39-18c2-4738-9507-d70eb167e86d / got description=757cece1-4b8c-4f01-a957-e5ecb3f5cd6f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 123ee542-1715-4095-8176-083e284c56be / got description=2ae30c39-18c2-4738-9507-d70eb167e86d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7b410d67-1a1d-446c-afd3-905df515925d / got description=123ee542-1715-4095-8176-083e284c56be) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1c0043e5-ad18-42dd-9147-27543e867d2d / got description=7b410d67-1a1d-446c-afd3-905df515925d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b31ef40f-e561-424d-8698-7da6365d8bc0 / got description=1c0043e5-ad18-42dd-9147-27543e867d2d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:376 Running test_abort... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:381 test_abort: stop master 2 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:385 test_abort: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:400 test_abort: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:406 test_abort: start master 2 to begin the restore process... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:409 test_abort PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort_restart | 28.09 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 21273e0f-8a03-49c2-995f-0fbaea2712eb / got description=d84ebeb0-6d38-47b2-b2fb-a0066a51d852) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 0ee59021-71d2-4f21-a198-b6e37a468d7a / got description=21273e0f-8a03-49c2-995f-0fbaea2712eb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 6b553012-5476-4161-a3b3-87b754f239f6 / got description=0ee59021-71d2-4f21-a198-b6e37a468d7a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 33dc00f2-ab15-413b-a7b1-ade724219c90 / got description=6b553012-5476-4161-a3b3-87b754f239f6) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 14165d08-62c5-48fb-bfc1-c24e05b50d9a / got description=33dc00f2-ab15-413b-a7b1-ade724219c90) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect d5df2051-7981-4c1f-9ca9-261ea4fd0bfa / got description=14165d08-62c5-48fb-bfc1-c24e05b50d9a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 45fe6168-ec64-4c47-9e34-1cfdefe25ddf / got description=d5df2051-7981-4c1f-9ca9-261ea4fd0bfa) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a79810a6-8f50-4163-bc79-a8af5a15b296 / got description=45fe6168-ec64-4c47-9e34-1cfdefe25ddf) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 8beb3225-bc79-471c-8bdd-a52212710dfc / got description=a79810a6-8f50-4163-bc79-a8af5a15b296) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7894875a-d67b-4e52-9cff-ad01d27588b0 / got description=8beb3225-bc79-471c-8bdd-a52212710dfc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6cd500f6-12bd-4a38-b889-e97acf64f14d / got description=7894875a-d67b-4e52-9cff-ad01d27588b0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c391a5ae-8b0b-4ad7-9123-fda7da5d1fd9 / got description=6cd500f6-12bd-4a38-b889-e97acf64f14d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:441 Running test_abort_restart... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:446 test_abort_restart: stop master 3 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:450 test_abort_restart: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:465 test_abort_abort: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:487 test_abort_restart PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort_certify | 35.98 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 77528af2-abd1-4d90-a66c-2d80cdc42007 / got description=e5cab970-9ad2-4ebb-bd60-309404674087) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 0affdfad-d4ff-4378-abde-6f82ebfeba00 / got description=77528af2-abd1-4d90-a66c-2d80cdc42007) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 1d61faba-f801-448e-8cf2-c2deb740cd94 / got description=0affdfad-d4ff-4378-abde-6f82ebfeba00) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2ba707d6-1b1b-488e-87dc-675363d37b98 / got description=1d61faba-f801-448e-8cf2-c2deb740cd94) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4f87c7ce-4dbb-4926-a2d1-e53616ddb910 / got description=2ba707d6-1b1b-488e-87dc-675363d37b98) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 393aa441-2ce6-4139-a39d-d0d6ac6419d1 / got description=4f87c7ce-4dbb-4926-a2d1-e53616ddb910) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a895a0c3-e28e-4da3-921e-8ab698d90956 / got description=393aa441-2ce6-4139-a39d-d0d6ac6419d1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 59e0378c-7109-4410-9e27-456c6b057e1b / got description=a895a0c3-e28e-4da3-921e-8ab698d90956) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect bcd68478-1f3f-429a-85dd-e51ccbec041a / got description=59e0378c-7109-4410-9e27-456c6b057e1b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect fe27d927-e9c5-4486-bf4f-ef99c87644ba / got description=bcd68478-1f3f-429a-85dd-e51ccbec041a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8e671b82-c900-44d2-9670-0b61fd2b28df / got description=fe27d927-e9c5-4486-bf4f-ef99c87644ba) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 69e7d6de-1039-4855-81dd-6b51d6be5974 / got description=8e671b82-c900-44d2-9670-0b61fd2b28df) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:509 Running test_abort_certify... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort_certify: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:515 test_abort_certify: stop master 2 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:519 test_abort_certify: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:531 test_abort_certify: abort the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:535 test_abort_certify... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:542 test_abort_certify: start master 2 to allow the abort task to finish... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:551 test_abort_certify: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:556 test_abort_certify PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_stress_clean | 44.30 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2a96f4e1-6387-426c-82df-6fd31009ba68 / got description=c0bc4ca1-ad04-4f12-b235-1d1bc7887353) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 318ee3fe-1321-45ed-980a-78a6182e6f54 / got description=2a96f4e1-6387-426c-82df-6fd31009ba68) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 1ecdc3af-ed8a-49ba-8a02-eb5a1b22ca0d / got description=318ee3fe-1321-45ed-980a-78a6182e6f54) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a916ccab-d259-42bd-86d6-82d0e582ce98 / got description=1ecdc3af-ed8a-49ba-8a02-eb5a1b22ca0d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4f22682d-8bd2-43b3-9551-05c592ce15d0 / got description=a916ccab-d259-42bd-86d6-82d0e582ce98) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 842ae194-64b0-4856-b460-1eaad8bbb6c4 / got description=4f22682d-8bd2-43b3-9551-05c592ce15d0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 03d99fa6-e70a-4cf8-b082-7f0199e4a08d / got description=842ae194-64b0-4856-b460-1eaad8bbb6c4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e9b9a7e8-fa00-43ea-a151-9fe73af96d9b / got description=03d99fa6-e70a-4cf8-b082-7f0199e4a08d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 8ac6a3c1-18d5-44fe-8593-04e90cd43848 / got description=e9b9a7e8-fa00-43ea-a151-9fe73af96d9b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 70ca944a-1aac-4d60-abb7-7b665ebc85c7 / got description=8ac6a3c1-18d5-44fe-8593-04e90cd43848) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fcd14800-4837-470c-8d6c-890dbfe1d3e0 / got description=70ca944a-1aac-4d60-abb7-7b665ebc85c7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 1a35c582-eaa9-4544-9a4a-79b0d008073e / got description=fcd14800-4837-470c-8d6c-890dbfe1d3e0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:580 Running test_stress_clean... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:581 test_stress_clean: put all the masters under load... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:598 test_stress_clean: allow some time for replication to get flowing... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:604 test_stress_clean: allow some time for master 4 to push changes out (60 seconds)... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_stress_clean: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:620 test_stress_clean: wait for all the updates to finish... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:627 test_stress_clean: check if all the replicas have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:631 test_stress_clean: PASSED, restoring master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:634 Sleep for 120 seconds to allow replication to complete... [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 850126e9-d182-49eb-a976-00b333cf9e8a / got description=1a35c582-eaa9-4544-9a4a-79b0d008073e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect e69ac206-99ed-4be8-8a35-d846c0adb6ff / got description=850126e9-d182-49eb-a976-00b333cf9e8a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c0b50da9-37d1-4f1f-aa10-6e54364a8ec7 / got description=e69ac206-99ed-4be8-8a35-d846c0adb6ff) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 87d04ed5-9078-4693-913d-08169e717e66 / got description=c0b50da9-37d1-4f1f-aa10-6e54364a8ec7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0076dfb8-267c-4746-a363-62c3ce7fa6b5 / got description=87d04ed5-9078-4693-913d-08169e717e66) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b8930e58-063f-4f2a-8f97-4be3c58545bb / got description=0076dfb8-267c-4746-a363-62c3ce7fa6b5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/cleanallruv_test.py::test_multiple_tasks_with_force | 49.82 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 78e0fd4d-49a9-41df-8c1d-6747d01153e3 / got description=02d9fe0f-4efe-480a-bc1f-4dbe1601b5e2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect cd930727-6aa4-4770-b846-4b5c8f63a9f3 / got description=78e0fd4d-49a9-41df-8c1d-6747d01153e3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect ba003c52-ff78-42c2-a904-b7f2270c3972 / got description=cd930727-6aa4-4770-b846-4b5c8f63a9f3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 32f34a7b-9ad6-4f4b-8965-5df90114f9a1 / got description=ba003c52-ff78-42c2-a904-b7f2270c3972) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect dadddc44-ae0a-47a6-9ac5-d7c1adedd6f9 / got description=32f34a7b-9ad6-4f4b-8965-5df90114f9a1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 8435edd0-ce0d-4a5b-99e7-ba2f7fb7a586 / got description=dadddc44-ae0a-47a6-9ac5-d7c1adedd6f9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 286645ae-6667-4457-ad5e-3296af81d5d8 / got description=8435edd0-ce0d-4a5b-99e7-ba2f7fb7a586) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c9016a98-bb79-40ed-bcd7-edafd9d51dec / got description=286645ae-6667-4457-ad5e-3296af81d5d8) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 0d57afd2-859c-4524-9455-6a19bc3cd412 / got description=c9016a98-bb79-40ed-bcd7-edafd9d51dec) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect dc0344da-fe1f-4ed5-b356-c5fe6f541de3 / got description=0d57afd2-859c-4524-9455-6a19bc3cd412) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 763f2aa2-0af3-4e0d-87fd-a590e98a5910 / got description=dc0344da-fe1f-4ed5-b356-c5fe6f541de3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 8387e7d5-f4ef-4131-967c-e1efa35b5d39 / got description=763f2aa2-0af3-4e0d-87fd-a590e98a5910) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:671 Running test_multiple_tasks_with_force... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_multiple_tasks_with_force: remove all the agreements to master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:690 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" on... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:699 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" off... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:718 test_multiple_tasks_with_force: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:722 test_abort: check master 1 no longer has a cleanAllRUV task... | |||
Passed | suites/replication/cleanallruv_test.py::test_clean_shutdown_crash | 39.06 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c784d057-0f3d-4303-8ed0-3eb9039fdf4e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect dcf339d8-c3c0-4005-bd18-5d8b9fa02f77 / got description=c784d057-0f3d-4303-8ed0-3eb9039fdf4e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:771 Enabling TLS [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:774 Creating replication dns [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:782 Changing auth type [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:803 Stopping master2 [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:806 Run the cleanAllRUV task [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:817 Check if master1 crashed [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:820 Repeat | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_add_modrdn | 17.79 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 73df09bf-08de-455e-b840-e7e55ee5ee82 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9213e419-0500-4e52-a354-a1c664631c15 / got description=73df09bf-08de-455e-b840-e7e55ee5ee82) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f04ac69-1a17-4f87-9daa-487a58d7fd83 / got description=9213e419-0500-4e52-a354-a1c664631c15) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f04ac69-1a17-4f87-9daa-487a58d7fd83 / got description=9213e419-0500-4e52-a354-a1c664631c15) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f04ac69-1a17-4f87-9daa-487a58d7fd83 / got description=9213e419-0500-4e52-a354-a1c664631c15) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f04ac69-1a17-4f87-9daa-487a58d7fd83 / got description=9213e419-0500-4e52-a354-a1c664631c15) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:210 Test create - modrdn [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 61eb061d-706c-4bde-b5cc-1f30b14aeda9 / got description=4f04ac69-1a17-4f87-9daa-487a58d7fd83) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 61eb061d-706c-4bde-b5cc-1f30b14aeda9 / got description=4f04ac69-1a17-4f87-9daa-487a58d7fd83) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ac33bf4a-b701-4dca-86f6-5c255bfc95fb / got description=61eb061d-706c-4bde-b5cc-1f30b14aeda9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_complex_add_modify_modrdn_delete | 84.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019e5d17-ec7e-493b-af9b-6f712fd49ed5 / got description=ac33bf4a-b701-4dca-86f6-5c255bfc95fb) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019e5d17-ec7e-493b-af9b-6f712fd49ed5 / got description=ac33bf4a-b701-4dca-86f6-5c255bfc95fb) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019e5d17-ec7e-493b-af9b-6f712fd49ed5 / got description=ac33bf4a-b701-4dca-86f6-5c255bfc95fb) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019e5d17-ec7e-493b-af9b-6f712fd49ed5 / got description=ac33bf4a-b701-4dca-86f6-5c255bfc95fb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:285 Test add-del on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:301 Test add-mod on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:317 Test add-modrdn on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:333 Test multiple add, modrdn [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:341 Add - del on both masters [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:348 Test modrdn - modrdn [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:353 Test modrdn - del [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65 / got description=019e5d17-ec7e-493b-af9b-6f712fd49ed5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 143feee4-b9d7-4251-ad51-4d32ab14d857 / got description=3f3efbbb-0b8e-40fa-a7d0-6f90b6a0dd65) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_conflict_attribute_multi_valued | 12.86 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:833 Check foo1 is on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:833 Check foo2 is on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:839 Check foo1 is on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:839 Check foo2 is on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:844 Check M1.uid foo1 is also on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:844 Check M1.uid foo2 is also on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:848 Check M2.uid foo1 is also on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:848 Check M2.uid foo2 is also on M1 | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_conflict_attribute_single_valued | 12.85 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:921 Check foo1 is on M1 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:927 Check foo1 is on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:932 Check M1.uid foo1 is also on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:936 Check M2.uid foo1 is also on M1 | |||
Passed | suites/replication/encryption_cl5_test.py::test_algorithm_unhashed[AES] | 53.47 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 62f8cde8-1f9f-46d9-a2bb-8142a9d5a8c1 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0de572c0-9838-4926-9793-129d2ff78ded / got description=62f8cde8-1f9f-46d9-a2bb-8142a9d5a8c1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect f41fc103-13e1-4f5e-9306-7718beb1d144 / got description=0de572c0-9838-4926-9793-129d2ff78ded) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:47 Configuring changelog encryption:master1 for: AES [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] | |||
Passed | suites/replication/encryption_cl5_test.py::test_algorithm_unhashed[3DES] | 52.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:47 Configuring changelog encryption:master1 for: 3DES [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/changelog.db'] [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/changelog.db'] | |||
Passed | suites/replication/regression_test.py::test_special_symbol_replica_agreement | 1.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=example,dc=com [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=replication manager,cn=config cn: bind dn pseudo user cn: replication manager objectClass: top objectClass: person sn: bind dn pseudo user userPassword: {PBKDF2_SHA256}AAAIAOzD1LJEioLP0XE25F6moqah+wCsgLaOtQxvjVrd6BbLUUonvuEHy0UydPG8eMa3zeRUgLo9IXskfndpfIF3lM45iCibJ0eK2kBZgMiF+LhYsBr1TD3JGwt1dip5rjs5PCzlnlevpYgRdYlTYQIY7AV/ksrc9+iIztj6yAQuHYig5DnaoMIhRHB67Bv/VAoGj8RsySFurMph0LD4ejn0uH5BznAKrFvIxqaGhiN9av17DW8gi06SW1YSwAsExygmzsBW7GeO3+RfE7xBsZg4L2K+kKNKP6wCUYm9LNqXZofc1wOckYWcKIvkvJwEMh+8kngPsAg2crTB4OXtGEMsmH3WQCzmAk3EBxTGCajjaf9iNwyXEqhiYYj3AP0WNJI3KhVBqV1Xz28m/0I1lIUltKioItKAq38pXQVechxE9qES [32mINFO [0m lib389:agreement.py:1169 Starting total init cn=-3meTo_ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:38902,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config | |||
Passed | suites/replication/regression_test.py::test_double_delete | 2.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e39d7660-fb0c-46e0-8932-c4f1c4496578 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 73d5509b-ecd8-4c04-a7a6-9f7cb0d2ecda / got description=e39d7660-fb0c-46e0-8932-c4f1c4496578) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:141 Adding a test entry user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:268 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:271 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1b043e9f-0d6a-4757-b68f-61f24b1461ae / got description=73d5509b-ecd8-4c04-a7a6-9f7cb0d2ecda) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 54d40903-e4db-41b8-8330-89da4ee84198 / got description=1b043e9f-0d6a-4757-b68f-61f24b1461ae) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_repl_modrdn | 6.49 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:314 Add test entries - Add 3 OUs and 2 same users under 2 different OUs [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2c04d6ce-c14e-47a8-8fda-5045d713c6fa / got description=54d40903-e4db-41b8-8330-89da4ee84198) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f572606b-5232-4834-9250-8476c4e26fd5 / got description=2c04d6ce-c14e-47a8-8fda-5045d713c6fa) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:338 Stop Replication [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:341 Apply modrdn to M1 - move test user from OU A -> C [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:344 Apply modrdn on M2 - move test user from OU B -> C [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:347 Start Replication [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:350 Wait for sometime for repl to resume [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 49e29494-ecdc-4814-8084-2663a09f9170 / got description=f572606b-5232-4834-9250-8476c4e26fd5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 22c7821c-e982-4e48-8fd3-498b780ce0a7 / got description=49e29494-ecdc-4814-8084-2663a09f9170) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:354 Check that there should be only one test entry under ou=C on both masters [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:361 Check that the replication is working fine both ways, M1 <-> M2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8c39836-5b05-49bf-be5b-2ff9332c5989 / got description=22c7821c-e982-4e48-8fd3-498b780ce0a7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ecba1870-0f8f-46fb-aabf-9740178f7bb2 / got description=f8c39836-5b05-49bf-be5b-2ff9332c5989) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_password_repl_error | 12.75 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:141 Adding a test entry user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:385 Clean the error log [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:388 Set replication loglevel [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:391 Modifying entry uid=testuser,ou=People,dc=example,dc=com - change userpassword on master 1 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7eb9d46a-6827-4110-a863-d823af0088fe / got description=ecba1870-0f8f-46fb-aabf-9740178f7bb2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:398 Restart the servers to flush the logs [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:403 Check that password works on master 2 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:407 Check the error log for the error with uid=testuser,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:410 Set the default loglevel | |||
Passed | suites/replication/regression_test.py::test_invalid_agmt | 2.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 38936924-e082-426e-9ca2-91e8ada4c6ca / got description=7eb9d46a-6827-4110-a863-d823af0088fe) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 95c22182-e216-4ee0-a104-5c95585b5f0d / got description=38936924-e082-426e-9ca2-91e8ada4c6ca) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_fetch_bindDnGroup | 20.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 964d4575-9041-4e9f-9c48-3756d8c9618b / got description=95c22182-e216-4ee0-a104-5c95585b5f0d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/regression_test.py::test_plugin_bind_dn_tracking_and_replication | 1.12 | |
No log output captured. | |||
Passed | suites/replication/regression_test.py::test_cleanallruv_repl | 117.02 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a14e61d6-c840-4f22-a246-c46917c48fda / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect aa32d925-9f50-4451-ad7d-9f9c6406e3ca / got description=a14e61d6-c840-4f22-a246-c46917c48fda) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect e0c2d979-3f9b-4b7e-9ce3-8dc55b086283 / got description=aa32d925-9f50-4451-ad7d-9f9c6406e3ca) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 624a7540-b785-4b7d-8c80-21c2413f81d2 / got description=e0c2d979-3f9b-4b7e-9ce3-8dc55b086283) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 624a7540-b785-4b7d-8c80-21c2413f81d2 / got description=e0c2d979-3f9b-4b7e-9ce3-8dc55b086283) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 624a7540-b785-4b7d-8c80-21c2413f81d2 / got description=e0c2d979-3f9b-4b7e-9ce3-8dc55b086283) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:680 Change the error log levels for all masters [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:684 Get the replication agreements for all 3 masters [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:689 Modify nsslapd-changelogmaxage=30 and nsslapd-changelogtrim-interval=5 for M1 and M2 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:712 Add test users to 3 masters [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:tasks.py:1397 cleanAllRUV task (task-09292020_220618) completed successfully [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config | |||
Passed | suites/replication/regression_test.py::test_online_reinit_may_hang | 19.19 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f33e5a2-eb81-4b3d-9629-5b49112da0e1 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 3bcd1e91-27be-4b23-ae2d-6deccfed0f24 / got description=4f33e5a2-eb81-4b3d-9629-5b49112da0e1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-master1/ldif/master1.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 44cfa43e-53cf-4a60-8a10-16ab75db85cb / got description=3bcd1e91-27be-4b23-ae2d-6deccfed0f24) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect eea846cd-9af3-4aef-a41d-3a86f2a9951b / got description=44cfa43e-53cf-4a60-8a10-16ab75db85cb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_moving_entry_make_online_init_fail | 1.64 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 22061373-42fd-432d-9b35-b943e4a92fa9 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 852d0160-2791-40b1-b4cb-32031ebe7b6a / got description=22061373-42fd-432d-9b35-b943e4a92fa9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:862 Generating DIT_0 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:865 Created entry: ou=OU0, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:870 Created entry: ou=OU0, ou=OU0, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:191 Create password policy for subtree ou=OU0,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:879 Turning tuser0 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:879 Turning tuser2 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:879 Turning tuser4 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:879 Turning tuser6 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:879 Turning tuser8 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:882 dc=example,dc=com => ou=OU0,dc=example,dc=com => ou=OU0,ou=OU0,dc=example,dc=com => 10 USERS [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:884 Generating DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:887 Created entry: ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:891 Created entry: ou=OU1, ou=OU1, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:191 Create password policy for subtree ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:895 Moving ou=OU0,ou=OU0,dc=example,dc=com to DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:898 Moving ou=OU0,dc=example,dc=com to DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:905 Moving USERS to ou=OU0,ou=OU0,ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:910 dc=example,dc=com => ou=OU1,dc=example,dc=com => ou=OU0,ou=OU1,dc=example,dc=com => ou=OU0,ou=OU0,ou=OU1,dc=example,dc=com => 10 USERS [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:912 Run Initialization. [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 552ad997-e610-4cbc-8c00-4c75d6a744c3 / got description=852d0160-2791-40b1-b4cb-32031ebe7b6a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:921 m1entry count - 42 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:922 m2entry count - 42 | |||
Passed | suites/replication/repl_agmt_bootstrap_test.py::test_repl_agmt_bootstrap_credentials | 15.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 05afebcc-414b-4bab-bcee-3074036f2fa0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1c7ac4b5-fb79-4f20-a665-f1a8d6196fe9 / got description=05afebcc-414b-4bab-bcee-3074036f2fa0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaType--1-4-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 1.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5Flags--1-2-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.10 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaId-0-65536-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.10 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaPurgeDelay--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.09 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaBindDnGroupCheckInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.08 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaTombstonePurgeInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.09 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.08 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaReleaseTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.33 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] | 0.07 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.07 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsDS5Flags--1-2-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaPurgeDelay--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsDS5ReplicaBindDnGroupCheckInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaTombstonePurgeInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.05 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaReleaseTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] | 0.34 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.31 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_same_attr_yields_same_return_code | 0.17 | |
No log output captured. | |||
Passed | suites/replication/ruvstore_test.py::test_ruv_entry_backup | 6.42 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1c3f711c-d72f-425e-a080-24c8caa232cc / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d9ff5176-69bf-4d9e-9131-54f4f840991f / got description=1c3f711c-d72f-425e-a080-24c8caa232cc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-master1/ldif/master1.ldif -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:102 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:58 Adding user to master1 [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:61 Modify RDN of user: uid=rep2lusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:68 Deleting user: uid=ruvusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:106 Stopping the server instance to run db2ldif task to create backup file [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:110 Starting the server after backup [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:113 Checking if backup file contains RUV and required attributes [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: objectClass [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsUniqueId [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsds50ruv [32mINFO [0m tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsruvReplicaLastModified | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_deletions_are_not_replicated | 9.32 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 96b1bf7f-0b07-4522-9796-8d443cd53726 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 530d4b0c-a7a9-467b-b4f1-b87500ab0107 / got description=96b1bf7f-0b07-4522-9796-8d443cd53726) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4c2ed3a0-86da-44dc-b95a-606c8ec0e0c3 / got description=530d4b0c-a7a9-467b-b4f1-b87500ab0107) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_error_20 | 1.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 69ea94d5-ca99-4cd9-87cd-605a413888af / got description=a007f02c-94e6-4b1c-8a2a-98d37b0062b2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_segfaults | 0.04 | |
No log output captured. | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_adding_deleting | 0.07 | |
No log output captured. | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_deleting_twice | 2.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1799d1c2-98e3-4af6-98b1-bf7bf64eda51 / got description=69ea94d5-ca99-4cd9-87cd-605a413888af) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 79163b75-f5d3-4c36-a00d-47fac024e221 / got description=1799d1c2-98e3-4af6-98b1-bf7bf64eda51) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_rename_entry | 2.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f4ddb0c8-a3c9-47fe-9a09-8628a21b3317 / got description=79163b75-f5d3-4c36-a00d-47fac024e221) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e68c0eda-1409-44dc-bd9f-25a6b5cf9ed0 / got description=f4ddb0c8-a3c9-47fe-9a09-8628a21b3317) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_userpassword_attribute | 3.10 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2e76a028-2e44-4fbb-8ebc-d0941b765c5b / got description=e68c0eda-1409-44dc-bd9f-25a6b5cf9ed0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6fc3bcb8-959e-4796-a137-ee0737c3ca40 / got description=2e76a028-2e44-4fbb-8ebc-d0941b765c5b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/series_of_repl_bugs_test.py::test_tombstone_modrdn | 0.07 | |
No log output captured. | |||
Passed | suites/replication/single_master_test.py::test_mail_attr_repl | 13.86 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect af8672ac-186c-44d0-b07c-da797639586d / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:67 Check that replication is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect ff2818c6-c665-4745-9f52-55e8abe41e43 / got description=af8672ac-186c-44d0-b07c-da797639586d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:83 Back up /var/lib/dirsrv/slapd-consumer1/db/userRoot/mail.db to /tmp/mail.db [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:87 Remove 'mail' attr from master [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:90 Wait for the replication to happen [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect c4c49f85-8985-4fb3-a0f4-658ea11fd1b1 / got description=ff2818c6-c665-4745-9f52-55e8abe41e43) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect c4c49f85-8985-4fb3-a0f4-658ea11fd1b1 / got description=ff2818c6-c665-4745-9f52-55e8abe41e43) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect c4c49f85-8985-4fb3-a0f4-658ea11fd1b1 / got description=ff2818c6-c665-4745-9f52-55e8abe41e43) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect c4c49f85-8985-4fb3-a0f4-658ea11fd1b1 / got description=ff2818c6-c665-4745-9f52-55e8abe41e43) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:94 Restore /tmp/mail.db to /var/lib/dirsrv/slapd-consumer1/db/userRoot/mail.db [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:98 Make a search for mail attribute in attempt to crash server [32mINFO [0m tests.suites.replication.single_master_test:single_master_test.py:101 Make sure that server hasn't crashed [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0f8ec11a-2218-4e54-a98f-077140590e35 / got description=c4c49f85-8985-4fb3-a0f4-658ea11fd1b1) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0f8ec11a-2218-4e54-a98f-077140590e35 / got description=c4c49f85-8985-4fb3-a0f4-658ea11fd1b1) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0f8ec11a-2218-4e54-a98f-077140590e35 / got description=c4c49f85-8985-4fb3-a0f4-658ea11fd1b1) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0f8ec11a-2218-4e54-a98f-077140590e35 / got description=c4c49f85-8985-4fb3-a0f4-658ea11fd1b1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working | |||
Passed | suites/replication/single_master_test.py::test_lastupdate_attr_before_init | 0.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:38901 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:38902 is was created | |||
Passed | suites/replication/tls_client_auth_repl_test.py::test_ssl_transport | 8.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 10458e1c-76a4-4722-bee5-3af2da83e6c7 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 41904cb9-bcfe-4df5-8b9b-fbbe0c7012c9 / got description=10458e1c-76a4-4722-bee5-3af2da83e6c7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect abda4a56-4a6b-4611-825f-14a25da2b4cc / got description=41904cb9-bcfe-4df5-8b9b-fbbe0c7012c9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 801a74a1-1109-440c-a34a-9495ecedf48c / got description=abda4a56-4a6b-4611-825f-14a25da2b4cc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect a46c1d1e-a6f8-4811-983e-10a91b51a3ea / got description=801a74a1-1109-440c-a34a-9495ecedf48c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 988109b8-3def-48f1-817c-75a6cb8d28e2 / got description=a46c1d1e-a6f8-4811-983e-10a91b51a3ea) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 4b5b82f1-167d-43fe-adee-4a03e71dbcdd / got description=988109b8-3def-48f1-817c-75a6cb8d28e2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 5c2ea72a-ec33-42e2-b5db-d6ea9f202a6b / got description=4b5b82f1-167d-43fe-adee-4a03e71dbcdd) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 19ee8c97-09f5-49cb-9f4e-e4b48999d155 / got description=5c2ea72a-ec33-42e2-b5db-d6ea9f202a6b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect fd38f992-31a8-4d75-97c6-c1645e2f58e9 / got description=19ee8c97-09f5-49cb-9f4e-e4b48999d155) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 3e7c03bb-a237-4b27-95da-3cfe5ea914b4 / got description=fd38f992-31a8-4d75-97c6-c1645e2f58e9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 71ddeadc-4235-4ef4-828d-c8c9e3aed825 / got description=3e7c03bb-a237-4b27-95da-3cfe5ea914b4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 06b53ce4-99f1-4b48-bc19-f78706663f21 / got description=71ddeadc-4235-4ef4-828d-c8c9e3aed825) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working | |||
Passed | suites/replication/tls_client_auth_repl_test.py::test_extract_pemfiles | 4.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:168 Check that nsslapd-extract-pemfiles is on [32mINFO [0m tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:172 Set nsslapd-extract-pemfiles = '{}' and check replication works) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect bab9d21d-66a8-42ea-bd12-233880c7156f / got description=06b53ce4-99f1-4b48-bc19-f78706663f21) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 2dbabcbe-c24d-4beb-bec5-1dd20d04d9eb / got description=bab9d21d-66a8-42ea-bd12-233880c7156f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:172 Set nsslapd-extract-pemfiles = '{}' and check replication works) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 94013521-2452-43a3-8185-3fa84d8b729f / got description=2dbabcbe-c24d-4beb-bec5-1dd20d04d9eb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect e7ba64b5-7df3-4017-b382-5fac0168f306 / got description=94013521-2452-43a3-8185-3fa84d8b729f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working | |||
Passed | suites/replication/tombstone_fixup_test.py::test_precise_tombstone_purging | 23.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:564 Export task export_09292020_221144 for file /var/lib/dirsrv/slapd-master1/ldif/export.ldif completed successfully [32mINFO [0m lib389.utils:tombstone_fixup_test.py:77 Import replication LDIF file... [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_221147 for file /var/lib/dirsrv/slapd-master1/ldif/export.ldif completed successfully [32mINFO [0m lib389:tasks.py:934 tombstone fixup task fixupTombstone_09292020_221150 for backend userRoot completed successfully [32mINFO [0m lib389:tasks.py:934 tombstone fixup task fixupTombstone_09292020_221152 for backend userRoot completed successfully [32mINFO [0m lib389.utils:tombstone_fixup_test.py:116 Wait for tombstone purge interval to pass... [32mINFO [0m lib389.utils:tombstone_fixup_test.py:123 Wait for tombstone purge interval to pass again... | |||
Passed | suites/replication/tombstone_test.py::test_purge_success | 0.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m Tombstone:tombstone.py:165 Reviving nsuniqueid=5a7d3c87-02c211eb-af35f845-d5e862e4,uid=testuser,ou=People,dc=example,dc=com -> uid=testuser,ou=people,dc=example,dc=com | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_not_int_value | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 90bfa379-b74a-48f0-82fb-7e197252c149 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f0662ce1-d959-4811-acb0-3049a13a61d1 / got description=90bfa379-b74a-48f0-82fb-7e197252c149) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_multi_value | 0.02 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr0] | 0.01 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr1] | 0.01 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr2] | 0.01 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr3] | 0.00 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr0] | 20.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:180 Gather all sync attempts within Counter dict, group by timestamp [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times [35mDEBUG [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 4 <= 9 <= 11 | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr1] | 20.06 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:180 Gather all sync attempts within Counter dict, group by timestamp [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 0 to 2 times [35mDEBUG [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 0 <= 1 <= 2 | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr2] | 20.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:180 Gather all sync attempts within Counter dict, group by timestamp [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times [35mDEBUG [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 4 <= 6 <= 11 | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr3] | 20.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:180 Gather all sync attempts within Counter dict, group by timestamp [32mINFO [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times [35mDEBUG [0m tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 4 <= 8 <= 11 | |||
Passed | suites/resource_limits/fdlimits_test.py::test_fd_limits | 0.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.resource_limits.fdlimits_test:fdlimits_test.py:69 Test PASSED | |||
Passed | suites/rewriters/adfilter_test.py::test_adfilter_objectCategory | 6.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/rewriters/basic_test.py::test_rewriters_container | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/rewriters/basic_test.py::test_foo_filter_rewriter | 4.38 | |
No log output captured. | |||
Passed | suites/roles/basic_test.py::test_filterrole | 0.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/roles/basic_test.py::test_managedrole | 0.40 | |
No log output captured. | |||
Passed | suites/roles/basic_test.py::test_nestedrole | 0.27 | |
No log output captured. | |||
Passed | suites/sasl/allowed_mechs_test.py::test_basic_feature | 37.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stdout call------------------------------ ['EXTERNAL', 'GSS-SPNEGO', 'GSSAPI', 'DIGEST-MD5', 'CRAM-MD5', 'LOGIN', 'PLAIN', 'ANONYMOUS'] -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:allowed_mechs_test.py:75 Test we have some of the default mechanisms [32mINFO [0m lib389:allowed_mechs_test.py:83 Edit mechanisms to allow just PLAIN [32mINFO [0m lib389:allowed_mechs_test.py:91 Restart server and make sure we still have correct allowed mechs [32mINFO [0m lib389:allowed_mechs_test.py:100 Edit mechanisms to allow just PLAIN and EXTERNAL [32mINFO [0m lib389:allowed_mechs_test.py:108 Edit mechanisms to allow just PLAIN and GSSAPI [32mINFO [0m lib389:allowed_mechs_test.py:126 Edit mechanisms to allow just PLAIN, GSSAPI, and ANONYMOUS [32mINFO [0m lib389:allowed_mechs_test.py:146 Edit mechanisms to allow just PLAIN and ANONYMOUS [32mINFO [0m lib389:allowed_mechs_test.py:165 Reset allowed mechaisms [32mINFO [0m lib389:allowed_mechs_test.py:169 Check that we have the original set of mechanisms [32mINFO [0m lib389:allowed_mechs_test.py:174 Check that we have the original set of mechanisms after a restart | |||
Passed | suites/sasl/allowed_mechs_test.py::test_config_set_few_mechs | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:allowed_mechs_test.py:198 Set nsslapd-allowed-sasl-mechanisms to 'PLAIN GSSAPI' [32mINFO [0m lib389:allowed_mechs_test.py:201 Verify nsslapd-allowed-sasl-mechanisms has the values | |||
Passed | suites/sasl/plain_test.py::test_basic_feature | 13.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/sasl/regression_test.py::test_openldap_no_nss_crypto | 38.78 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2a0f0fb9-9656-4f8d-9324-59cd8f312cdb / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9fcb48b0-077b-4355-b828-8f5dc5ba6d2b / got description=2a0f0fb9-9656-4f8d-9324-59cd8f312cdb) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:134 Ticket 47536 - Allow usage of OpenLDAP libraries that don't use NSS for crypto [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect ad439d9f-efbf-41b3-8ab8-6da5fb1d42c5 / got description=9fcb48b0-077b-4355-b828-8f5dc5ba6d2b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master1 ###################### [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master2 ###################### [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 266836f9-7036-4a6b-b946-3861b1824a70 / got description=ad439d9f-efbf-41b3-8ab8-6da5fb1d42c5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect b46d22eb-4cc0-4a2d-b686-ff058f66a43f / got description=266836f9-7036-4a6b-b946-3861b1824a70) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:147 ##### Searching for entries on master1... [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:151 ##### Searching for entries on master2... [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:93 ######################### Relocate PEM files on master1 ###################### [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:101 ##### restart master1 [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:48 ######################### Check PEM files (/dev/shm/MyCA, /dev/shm/MyServerCert1, /dev/shm/MyServerKey1) in /dev/shm ###################### [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:54 /dev/shm/MyCA.pem is successfully generated. [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:67 /dev/shm/MyServerCert1.pem is successfully generated. [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:80 /dev/shm/MyServerKey1.pem is successfully generated. [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master1 ###################### [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master2 ###################### [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect dbc5dc4b-18c5-45f5-8dc2-56fbf2ceff1e / got description=b46d22eb-4cc0-4a2d-b686-ff058f66a43f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect d78eaa69-6332-4728-bbb5-e36740dbc153 / got description=dbc5dc4b-18c5-45f5-8dc2-56fbf2ceff1e) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect d78eaa69-6332-4728-bbb5-e36740dbc153 / got description=dbc5dc4b-18c5-45f5-8dc2-56fbf2ceff1e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701 is working [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:163 ##### Searching for entries on master1... [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:167 ##### Searching for entries on master2... [32mINFO [0m lib389:tasks.py:564 Export task export_09292020_221804 for file /var/lib/dirsrv/slapd-master1/ldif/master1.ldif completed successfully [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:174 Ticket 47536 - PASSED | |||
Passed | suites/schema/eduperson_test.py::test_account_locking | 0.32 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.schema.eduperson_test:eduperson_test.py:88 Test PASSED | |||
Passed | suites/schema/schema_reload_test.py::test_valid_schema | 2.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:43 Test schema-reload task with valid schema [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:46 Create valid schema file (99user.ldif)... [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:62 Run the schema-reload task... [32mINFO [0m lib389:tasks.py:1166 Schema Reload task (task-09292020_221820) completed successfully [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:68 The schema reload task worked as expected [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:71 Check cn=schema to verify the valid schema was added | |||
Passed | suites/schema/schema_reload_test.py::test_invalid_schema | 1.37 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:95 Test schema-reload task with invalid schema [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:98 Create valid schema file (98user.ldif)... [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:113 Create invalid schema file (99user.ldif)... [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:130 Run the schema-reload task, it should fail... [1m[31mERROR [0m lib389:tasks.py:1163 Error: Schema Reload task (task-09292020_221823) exited with -2 [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:136 The schema reload task failed as expected: error -2 [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:140 Check cn=schema to verify the invalid schema was not added [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:147 The invalid schema is not present on the server | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_one | 9.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect b5a1e7dd-2bd3-4c99-94e7-a8606640eb8a / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:182 test_schema_replication_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e72c7610> (master <lib389.DirSrv object at 0x7f21e4786d30>, consumer <lib389.DirSrv object at 0x7f21e7eace20> -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:222 test_schema_replication_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e72c7610> (master <lib389.DirSrv object at 0x7f21e4786d30>, consumer <lib389.DirSrv object at 0x7f21e7eace20> [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive 0 (expected 1) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'1' (expected 2) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:233 test_schema_replication_one master_schema_csn=b'5f73eb02000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:234 ctest_schema_replication_one onsumer_schema_csn=b'5f73eb02000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38] 389-Directory/1.4.4.4 B2020.273.2316 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123] ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 (/etc/dirsrv/slapd-master1) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [241] [29/Sep/2020:22:18:27.210404485 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [355] [29/Sep/2020:22:18:27.219477348 -0400] - INFO - bdb_config_upgrade_dse_info - create config entry from old config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [532] [29/Sep/2020:22:18:27.229486302 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [677] [29/Sep/2020:22:18:27.233759112 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7490011136, process usage 23056384 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [795] [29/Sep/2020:22:18:27.236387914 -0400] - INFO - check_and_set_import_cache - Import allocates 2925785KB import cache. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [902] [29/Sep/2020:22:18:27.434953042 -0400] - INFO - bdb_import_main - import userRoot: Beginning import job... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1030] [29/Sep/2020:22:18:27.437743798 -0400] - INFO - bdb_import_main - import userRoot: Index buffering enabled with bucket size 100 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1152] [29/Sep/2020:22:18:27.638629544 -0400] - INFO - import_producer - import userRoot: Processing file "/tmp/ldifYUhfqK.ldif" [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1293] [29/Sep/2020:22:18:27.642463065 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldifYUhfqK.ldif" (9 entries) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1416] [29/Sep/2020:22:18:28.143571636 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1526] [29/Sep/2020:22:18:28.346921076 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1640] [29/Sep/2020:22:18:28.350170221 -0400] - INFO - bdb_import_main - import userRoot: Cleaning up producer thread... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1762] [29/Sep/2020:22:18:28.353076022 -0400] - INFO - bdb_import_main - import userRoot: Indexing complete. Post-processing... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1919] [29/Sep/2020:22:18:28.355610220 -0400] - INFO - bdb_import_main - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2039] [29/Sep/2020:22:18:28.363785892 -0400] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2163] [29/Sep/2020:22:18:28.367140267 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2294] [29/Sep/2020:22:18:28.369870674 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2426] [29/Sep/2020:22:18:28.372590417 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Starting sort of ancestorid non-leaf IDs... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2556] [29/Sep/2020:22:18:28.375341400 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished sort of ancestorid non-leaf IDs. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2698] [29/Sep/2020:22:18:28.381015212 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2837] [29/Sep/2020:22:18:28.385702271 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2939] [29/Sep/2020:22:18:28.388292676 -0400] - INFO - bdb_import_main - import userRoot: Flushing caches... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3039] [29/Sep/2020:22:18:28.390864320 -0400] - INFO - bdb_import_main - import userRoot: Closing files... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3193] [29/Sep/2020:22:18:28.466204498 -0400] - INFO - bdb_import_main - import userRoot: Import complete. Processed 9 entries in 1 seconds. (9.00 entries/sec) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3290] [29/Sep/2020:22:18:28.469491926 -0400] - INFO - bdb_pre_close - All database threads now stopped [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3394] [29/Sep/2020:22:18:28.645391598 -0400] - INFO - main - 389-Directory/1.4.4.4 B2020.273.2316 starting up [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3502] [29/Sep/2020:22:18:28.649388357 -0400] - INFO - main - Setting the maximum file descriptor limit to: 524288 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3610] [29/Sep/2020:22:18:29.461089963 -0400] - INFO - PBKDF2_SHA256 - Based on CPU performance, chose 2048 rounds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3727] [29/Sep/2020:22:18:29.470400048 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3829] [29/Sep/2020:22:18:29.478393550 -0400] - NOTICE - bdb_start_autotune - found 7980860k physical memory [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3925] [29/Sep/2020:22:18:29.481366900 -0400] - NOTICE - bdb_start_autotune - found 7313128k available [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4032] [29/Sep/2020:22:18:29.484171797 -0400] - NOTICE - bdb_start_autotune - cache autosizing: db cache: 498803k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4162] [29/Sep/2020:22:18:29.487249247 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot entry cache (1 total): 1376256k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4288] [29/Sep/2020:22:18:29.498615001 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot dn cache (1 total): 196608k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4392] [29/Sep/2020:22:18:29.502184120 -0400] - NOTICE - bdb_start_autotune - total cache size: 1834683392 B; [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4500] [29/Sep/2020:22:18:29.505511322 -0400] - INFO - bdb_start - Resizing db cache size: 2996004454 -> 408620032 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4636] [29/Sep/2020:22:18:29.746964802 -0400] - INFO - slapd_daemon - slapd started. Listening on All Interfaces port 39001 for LDAP requests [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4824] [29/Sep/2020:22:18:34.672222995 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5004] [29/Sep/2020:22:18:34.676866542 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5192] [29/Sep/2020:22:18:34.682615238 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5372] [29/Sep/2020:22:18:34.690962892 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5543] [29/Sep/2020:22:18:35.440616002 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-139-159:39201)". [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5727] [29/Sep/2020:22:18:35.444550045 -0400] - NOTICE - NSMMReplicationPlugin - replica_subentry_check - Need to create replication keep alive entry <cn=repl keep alive 1,dc=example,dc=com> [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5872] [29/Sep/2020:22:18:35.451525409 -0400] - INFO - NSMMReplicationPlugin - replica_subentry_create - add dn: cn=repl keep alive 1,dc=example,dc=com [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5889] objectclass: top [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5915] objectclass: ldapsubentry [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5945] objectclass: extensibleObject [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5967] cn: repl keep alive 1 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6154] [29/Sep/2020:22:18:38.028324190 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-139-159:39201)". Sent 12 entries. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6154] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6154 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_two | 11.44 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - (ticket 47721 allows to learn missing def) [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'2' (expected 3) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'3' (expected 4) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:289 test_schema_replication_two master_schema_csn=b'5f73eb0e000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:290 test_schema_replication_two consumer_schema_csn=b'5f73eb0e000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6155 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6368] 29/Sep/2020:22:18:54.286096333 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-139-159:39201) must not be overwritten (set replication log for additional info) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6368 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_three | 9.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'4' (expected 5) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'5' (expected 6) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:340 test_schema_replication_three master_schema_csn=b'5f73eb17000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:341 test_schema_replication_three consumer_schema_csn=b'5f73eb17000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6369 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6369] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6369 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_four | 9.39 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'6' (expected 7) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'7' (expected 8) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:389 test_schema_replication_four master_schema_csn=b'5f73eb21000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:390 ctest_schema_replication_four onsumer_schema_csn=b'5f73eb21000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6370 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6370] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6370 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_five | 11.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - (fix for 47721) [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'8' (expected 9) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'9' (expected 10) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:452 test_schema_replication_five master_schema_csn=b'5f73eb2c000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:453 ctest_schema_replication_five onsumer_schema_csn=b'5f73eb2c000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6371 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6476] /Sep/2020:22:19:24.681214618 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6598] [29/Sep/2020:22:19:24.698280864 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb290002:1601432361:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6719] [29/Sep/2020:22:19:24.702815035 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb2c0000:1601432364:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6882] [29/Sep/2020:22:19:24.706967376 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb2c000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7062] [29/Sep/2020:22:19:24.711135438 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0a9000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7307] [29/Sep/2020:22:19:24.717992849 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7482] [29/Sep/2020:22:19:24.722036988 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb2c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7620] [29/Sep/2020:22:19:24.727684489 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7750] [29/Sep/2020:22:19:24.732863519 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7888] [29/Sep/2020:22:19:24.737299194 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8016] [29/Sep/2020:22:19:24.741634369 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8131] [29/Sep/2020:22:19:24.746034986 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8306] [29/Sep/2020:22:19:24.751810761 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8489] [29/Sep/2020:22:19:24.758699694 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8661] [29/Sep/2020:22:19:24.762959662 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8829] [29/Sep/2020:22:19:24.768900372 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9011] [29/Sep/2020:22:19:24.775605612 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9195] [29/Sep/2020:22:19:24.779185122 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb2c000000000000 / remotecsn:5f73eb21000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9359] [29/Sep/2020:22:19:24.925976280 -0400] - DEBUG - schema_oc_compare_strict - Attribute telexNumber is not required in 'consumerNewOCA' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9513] [29/Sep/2020:22:19:24.934625327 -0400] - DEBUG - schema_oc_superset_check - Remote consumerNewOCA schema objectclasses is a superset of the received one. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9677] [29/Sep/2020:22:19:24.941679505 -0400] - DEBUG - schema_oc_compare_strict - Attribute telexNumber is not required in 'consumerNewOCA' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9827] [29/Sep/2020:22:19:24.945647116 -0400] - DEBUG - schema_list_oc2learn - Add that unknown/extended objectclass consumerNewOCA (1.2.3.4.5.6.7.8.9.10.1) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10113] [29/Sep/2020:22:19:24.949355857 -0400] - DEBUG - schema_oc_to_string - Replace (old[251]=( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' )) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10426] [29/Sep/2020:22:19:24.953130031 -0400] - DEBUG - supplier_get_new_definitions - supplier takes objectclass: ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'user defined' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10728] [29/Sep/2020:22:19:24.970858692 -0400] - DEBUG - modify_schema_prepare_mods - MOD[1] del (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11039] [29/Sep/2020:22:19:24.974582235 -0400] - DEBUG - modify_schema_prepare_mods - MOD[0] add (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'user defined' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11147] [29/Sep/2020:22:19:24.977433328 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11270] [29/Sep/2020:22:19:24.983329011 -0400] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11484] [29/Sep/2020:22:19:24.986528791 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-139-159:39201) must not be overwritten (set replication log for additional info) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 11484 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_six | 9.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'10' (expected 11) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'11' (expected 12) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:508 test_schema_replication_six master_schema_csn=b'5f73eb36000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:509 ctest_schema_replication_six onsumer_schema_csn=b'5f73eb36000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 11485 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11621] 29/Sep/2020:22:19:25.006914375 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] schema definitions may have been learned [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11755] [29/Sep/2020:22:19:25.195037632 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb2a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11940] [29/Sep/2020:22:19:25.203296746 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12055] [29/Sep/2020:22:19:25.421126290 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb2c0002:1601432364:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12177] [29/Sep/2020:22:19:25.426008559 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb2c0002:1601432364:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12298] [29/Sep/2020:22:19:25.428888568 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb2d0000:1601432365:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12479] [29/Sep/2020:22:19:25.431934089 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12635] [29/Sep/2020:22:19:25.437222587 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12876] [29/Sep/2020:22:19:25.440320345 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb29000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13057] [29/Sep/2020:22:19:25.443228585 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13213] [29/Sep/2020:22:19:25.445934589 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13454] [29/Sep/2020:22:19:25.449800305 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb2c000000010000 5f73eb2c [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13616] [29/Sep/2020:22:19:25.452212935 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34700 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13843] [29/Sep/2020:22:19:25.454806898 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34700 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14139] [29/Sep/2020:22:19:25.457400526 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb2c000000010000) csnBuf (5f73eb29000000010000) csnConsumerMax (5f73eb29000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14252] [29/Sep/2020:22:19:25.460157882 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb29000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14443] [29/Sep/2020:22:19:25.463177715 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb29000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14599] [29/Sep/2020:22:19:25.476400858 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14711] [29/Sep/2020:22:19:25.479239737 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14931] [29/Sep/2020:22:19:25.482526147 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb2c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15063] [29/Sep/2020:22:19:25.486094671 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15261] [29/Sep/2020:22:19:25.488826247 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15576] [29/Sep/2020:22:19:25.491107084 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb2c000000010000) csnMax (5f73eb2c000000010000) csnBuf (5f73eb2c000000010000) csnConsumerMax (5f73eb2c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15700] [29/Sep/2020:22:19:25.493881908 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15884] [29/Sep/2020:22:19:25.496078230 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15996] [29/Sep/2020:22:19:25.499450000 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16129] [29/Sep/2020:22:19:25.502075439 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16259] [29/Sep/2020:22:19:25.504920874 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 19, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16392] [29/Sep/2020:22:19:25.509296027 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16525] [29/Sep/2020:22:19:25.522053550 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16658] [29/Sep/2020:22:19:25.527915157 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16791] [29/Sep/2020:22:19:25.535700060 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16924] [29/Sep/2020:22:19:25.547030093 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17057] [29/Sep/2020:22:19:25.566218681 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17190] [29/Sep/2020:22:19:25.601421551 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17303] [29/Sep/2020:22:19:25.604638671 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 19 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17412] [29/Sep/2020:22:19:25.668785480 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17684] [29/Sep/2020:22:19:25.671940108 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17848] [29/Sep/2020:22:19:25.677929758 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18018] [29/Sep/2020:22:19:25.680728048 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18192] [29/Sep/2020:22:19:25.683275691 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18300] [29/Sep/2020:22:19:25.758747315 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18471] [29/Sep/2020:22:19:25.761635901 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18646] [29/Sep/2020:22:19:25.765225199 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18821] [29/Sep/2020:22:19:25.767895520 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18993] [29/Sep/2020:22:19:25.770769598 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19168] [29/Sep/2020:22:19:25.773841989 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19333] [29/Sep/2020:22:19:25.865641252 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-139-159:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19461] [29/Sep/2020:22:19:25.868791239 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19674] [29/Sep/2020:22:19:25.873384049 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb2c000000010000 5f73eb2c [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19849] [29/Sep/2020:22:19:25.877590394 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19957] [29/Sep/2020:22:19:25.879916578 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20065] [29/Sep/2020:22:19:30.898138693 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20235] [29/Sep/2020:22:19:30.939318939 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20410] [29/Sep/2020:22:19:30.942679518 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20585] [29/Sep/2020:22:19:30.945574300 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20757] [29/Sep/2020:22:19:30.950081002 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20926] [29/Sep/2020:22:19:30.953599196 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21454] [29/Sep/2020:22:19:30.956614306 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - binddn = cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQ1AzTFBlcFRMN2YxeGMyM1pGTDFaYg==}1pRiS3KWqCTtKqTFr9U4pZtS4Ppuwvr2vLAjBH4Lc95/nlD+08QPs6kedVLZkML/ [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21499] amFCMWweOTK3n18Nk8oLLuU9HijJ+Ruy+6yd6K8ACsE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21674] [29/Sep/2020:22:19:30.960501400 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21796] [29/Sep/2020:22:19:30.967102354 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb2d0000:1601432365:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21917] [29/Sep/2020:22:19:30.989017717 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb320000:1601432370:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22085] [29/Sep/2020:22:19:30.993811202 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22267] [29/Sep/2020:22:19:30.997280159 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22451] [29/Sep/2020:22:19:31.003733787 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb2c000000000000 / remotecsn:5f73eb2a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22585] [29/Sep/2020:22:19:31.221786561 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb2c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22700] [29/Sep/2020:22:19:31.226736682 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb320001:1601432370:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22822] [29/Sep/2020:22:19:31.231540425 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb320001:1601432370:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22943] [29/Sep/2020:22:19:31.235125565 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb330000:1601432371:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23124] [29/Sep/2020:22:19:31.238899776 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23280] [29/Sep/2020:22:19:31.245405286 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23521] [29/Sep/2020:22:19:31.249891681 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb2c000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23702] [29/Sep/2020:22:19:31.256026720 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23858] [29/Sep/2020:22:19:31.259984857 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24099] [29/Sep/2020:22:19:31.263652351 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb2c000000010000 5f73eb2c [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24395] [29/Sep/2020:22:19:31.267009740 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f73eb2c000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb2c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24519] [29/Sep/2020:22:19:31.270897458 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24791] [29/Sep/2020:22:19:31.274105184 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=0 sent=0 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24940] [29/Sep/2020:22:19:31.277314588 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25104] [29/Sep/2020:22:19:31.283817219 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25274] [29/Sep/2020:22:19:31.290778955 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25448] [29/Sep/2020:22:19:31.295496031 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25570] [29/Sep/2020:22:19:32.948946641 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb330000:1601432371:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25691] [29/Sep/2020:22:19:32.952462857 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb340000:1601432372:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25854] [29/Sep/2020:22:19:32.956611441 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb34000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26034] [29/Sep/2020:22:19:32.961837646 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0ac000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26279] [29/Sep/2020:22:19:32.966017322 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26454] [29/Sep/2020:22:19:32.974452858 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb34000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26592] [29/Sep/2020:22:19:32.977613836 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26722] [29/Sep/2020:22:19:32.980558424 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26860] [29/Sep/2020:22:19:32.983869739 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26988] [29/Sep/2020:22:19:32.986945949 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27103] [29/Sep/2020:22:19:32.990501948 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27278] [29/Sep/2020:22:19:32.996787101 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27461] [29/Sep/2020:22:19:32.999722919 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27633] [29/Sep/2020:22:19:33.002986177 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27755] [29/Sep/2020:22:19:33.008474169 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb340001:1601432372:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27876] [29/Sep/2020:22:19:33.016513115 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb350000:1601432373:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28044] [29/Sep/2020:22:19:33.021413586 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28226] [29/Sep/2020:22:19:33.025004603 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28341] [29/Sep/2020:22:19:33.028470588 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb350001:1601432373:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28522] [29/Sep/2020:22:19:33.033807905 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28678] [29/Sep/2020:22:19:33.036842098 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28919] [29/Sep/2020:22:19:33.040239465 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb2c000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29100] [29/Sep/2020:22:19:33.043897109 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29256] [29/Sep/2020:22:19:33.047559937 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29497] [29/Sep/2020:22:19:33.050797135 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb34000000010000 5f73eb34 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29659] [29/Sep/2020:22:19:33.055399944 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34800 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29886] [29/Sep/2020:22:19:33.058785609 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34800 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30182] [29/Sep/2020:22:19:33.062532186 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb34000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb2c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30295] [29/Sep/2020:22:19:33.066083359 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb2c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30486] [29/Sep/2020:22:19:33.070031591 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb2c000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30642] [29/Sep/2020:22:19:33.073912297 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30862] [29/Sep/2020:22:19:33.078395006 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb34000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30974] [29/Sep/2020:22:19:33.085007223 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31172] [29/Sep/2020:22:19:33.090077498 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31487] [29/Sep/2020:22:19:33.093735475 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb34000000010000) csnMax (5f73eb34000000010000) csnBuf (5f73eb34000000010000) csnConsumerMax (5f73eb34000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31611] [29/Sep/2020:22:19:33.096833994 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31795] [29/Sep/2020:22:19:33.100076774 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31907] [29/Sep/2020:22:19:33.103800328 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32040] [29/Sep/2020:22:19:33.107499344 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32170] [29/Sep/2020:22:19:33.110882815 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32303] [29/Sep/2020:22:19:33.114020300 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32436] [29/Sep/2020:22:19:33.119006563 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32569] [29/Sep/2020:22:19:33.125331268 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32702] [29/Sep/2020:22:19:33.133415721 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32835] [29/Sep/2020:22:19:33.144988267 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32968] [29/Sep/2020:22:19:33.168046314 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33101] [29/Sep/2020:22:19:33.203594604 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33214] [29/Sep/2020:22:19:33.207631899 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33323] [29/Sep/2020:22:19:33.271819309 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33595] [29/Sep/2020:22:19:33.276313189 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33759] [29/Sep/2020:22:19:33.286805268 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33929] [29/Sep/2020:22:19:33.300029631 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34103] [29/Sep/2020:22:19:33.304975933 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34211] [29/Sep/2020:22:19:34.325645056 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34319] [29/Sep/2020:22:19:34.397453814 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34441] [29/Sep/2020:22:19:34.412810400 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb350001:1601432373:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34562] [29/Sep/2020:22:19:34.416614084 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb360000:1601432374:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34725] [29/Sep/2020:22:19:34.419947097 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb36000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34905] [29/Sep/2020:22:19:34.423181631 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0b4000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35150] [29/Sep/2020:22:19:34.426650741 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35325] [29/Sep/2020:22:19:34.429922252 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb36000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35463] [29/Sep/2020:22:19:34.433978953 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35593] [29/Sep/2020:22:19:34.441527799 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35731] [29/Sep/2020:22:19:34.445031194 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35859] [29/Sep/2020:22:19:34.448332962 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35974] [29/Sep/2020:22:19:34.451577796 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36149] [29/Sep/2020:22:19:34.456386838 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36332] [29/Sep/2020:22:19:34.459409777 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36504] [29/Sep/2020:22:19:34.462669238 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36672] [29/Sep/2020:22:19:34.470832351 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36854] [29/Sep/2020:22:19:34.474629535 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37038] [29/Sep/2020:22:19:34.477826155 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb36000000000000 / remotecsn:5f73eb2c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37172] [29/Sep/2020:22:19:34.687837105 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb2c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37357] [29/Sep/2020:22:19:34.691470094 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37472] [29/Sep/2020:22:19:34.876461327 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb360002:1601432374:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37653] [29/Sep/2020:22:19:34.882041719 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37809] [29/Sep/2020:22:19:34.886568828 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38050] [29/Sep/2020:22:19:34.892898820 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb34000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38231] [29/Sep/2020:22:19:34.896654619 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38387] [29/Sep/2020:22:19:34.900562462 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38628] [29/Sep/2020:22:19:34.904489168 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb36000000010000 5f73eb36 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38790] [29/Sep/2020:22:19:34.913687131 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34800 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39017] [29/Sep/2020:22:19:34.917517320 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34800 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39313] [29/Sep/2020:22:19:34.922345321 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb36000000010000) csnBuf (5f73eb34000000010000) csnConsumerMax (5f73eb34000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39426] [29/Sep/2020:22:19:34.926741457 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb34000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39617] [29/Sep/2020:22:19:34.930513845 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb34000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39773] [29/Sep/2020:22:19:34.934249474 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39885] [29/Sep/2020:22:19:34.938049066 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40017] [29/Sep/2020:22:19:34.944460429 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40237] [29/Sep/2020:22:19:34.949251629 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb36000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40369] [29/Sep/2020:22:19:34.952782882 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40567] [29/Sep/2020:22:19:34.956442468 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40882] [29/Sep/2020:22:19:34.978008163 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb36000000010000) csnMax (5f73eb36000000010000) csnBuf (5f73eb36000000010000) csnConsumerMax (5f73eb36000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41006] [29/Sep/2020:22:19:34.983336190 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41190] [29/Sep/2020:22:19:34.987576251 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41302] [29/Sep/2020:22:19:34.990926129 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41435] [29/Sep/2020:22:19:34.994339434 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41565] [29/Sep/2020:22:19:34.999558980 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 17, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41698] [29/Sep/2020:22:19:35.015323412 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41831] [29/Sep/2020:22:19:35.020889807 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41964] [29/Sep/2020:22:19:35.026609836 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42097] [29/Sep/2020:22:19:35.035989475 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42230] [29/Sep/2020:22:19:35.047654706 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42363] [29/Sep/2020:22:19:35.068188062 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42476] [29/Sep/2020:22:19:35.094473778 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 17 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42585] [29/Sep/2020:22:19:35.104175409 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42857] [29/Sep/2020:22:19:35.117935123 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43021] [29/Sep/2020:22:19:35.125896585 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43191] [29/Sep/2020:22:19:35.129764859 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43365] [29/Sep/2020:22:19:35.133586706 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43473] [29/Sep/2020:22:19:35.462896855 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43644] [29/Sep/2020:22:19:35.468775762 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43819] [29/Sep/2020:22:19:35.472520614 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43994] [29/Sep/2020:22:19:35.477784491 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44166] [29/Sep/2020:22:19:35.481878856 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44341] [29/Sep/2020:22:19:35.485166317 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44506] [29/Sep/2020:22:19:35.573075432 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-139-159:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44634] [29/Sep/2020:22:19:35.577388807 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44847] [29/Sep/2020:22:19:35.581021304 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb36000000010000 5f73eb36 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45022] [29/Sep/2020:22:19:35.584833776 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45130] [29/Sep/2020:22:19:35.588685150 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45238] [29/Sep/2020:22:19:36.134199908 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45353] [29/Sep/2020:22:19:36.170200163 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45461] [29/Sep/2020:22:19:40.613222256 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45631] [29/Sep/2020:22:19:40.632227149 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45806] [29/Sep/2020:22:19:40.640980969 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45981] [29/Sep/2020:22:19:40.710378406 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46153] [29/Sep/2020:22:19:40.717805139 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46322] [29/Sep/2020:22:19:40.730608460 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46850] [29/Sep/2020:22:19:40.739519639 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - binddn = cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQ1AzTFBlcFRMN2YxeGMyM1pGTDFaYg==}1pRiS3KWqCTtKqTFr9U4pZtS4Ppuwvr2vLAjBH4Lc95/nlD+08QPs6kedVLZkML/ [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46895] amFCMWweOTK3n18Nk8oLLuU9HijJ+Ruy+6yd6K8ACsE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47070] [29/Sep/2020:22:19:40.749269673 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47192] [29/Sep/2020:22:19:40.780105110 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb360002:1601432374:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47313] [29/Sep/2020:22:19:40.789481175 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb3c0000:1601432380:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47481] [29/Sep/2020:22:19:40.797816368 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47663] [29/Sep/2020:22:19:40.808323372 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47847] [29/Sep/2020:22:19:40.857243174 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb36000000000000 / remotecsn:5f73eb2c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47981] [29/Sep/2020:22:19:41.061761972 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb36000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48096] [29/Sep/2020:22:19:41.065874581 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb3c0001:1601432380:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48218] [29/Sep/2020:22:19:41.068787096 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb3c0001:1601432380:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48339] [29/Sep/2020:22:19:41.072294897 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb3d0000:1601432381:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48520] [29/Sep/2020:22:19:41.075464271 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48676] [29/Sep/2020:22:19:41.079470386 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48917] [29/Sep/2020:22:19:41.082445592 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb36000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49098] [29/Sep/2020:22:19:41.085885780 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49254] [29/Sep/2020:22:19:41.088826329 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49495] [29/Sep/2020:22:19:41.092723609 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb36000000010000 5f73eb36 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49791] [29/Sep/2020:22:19:41.099249740 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f73eb36000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb36000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49915] [29/Sep/2020:22:19:41.107993527 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50187] [29/Sep/2020:22:19:41.112550250 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=0 sent=0 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50336] [29/Sep/2020:22:19:41.118011803 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50500] [29/Sep/2020:22:19:41.126553261 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50670] [29/Sep/2020:22:19:41.130238246 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50844] [29/Sep/2020:22:19:41.134193086 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50966] [29/Sep/2020:22:19:42.649939354 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb3d0000:1601432381:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51087] [29/Sep/2020:22:19:42.653677244 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb3e0000:1601432382:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51250] [29/Sep/2020:22:19:42.657417054 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb3e000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51430] [29/Sep/2020:22:19:42.663927752 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0b6000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51675] [29/Sep/2020:22:19:42.667419276 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51850] [29/Sep/2020:22:19:42.670143679 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb3e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51988] [29/Sep/2020:22:19:42.673692139 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52118] [29/Sep/2020:22:19:42.676979449 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52256] [29/Sep/2020:22:19:42.680032114 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52384] [29/Sep/2020:22:19:42.683144884 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52499] [29/Sep/2020:22:19:42.686161974 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52674] [29/Sep/2020:22:19:42.694759705 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52857] [29/Sep/2020:22:19:42.698695707 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53029] [29/Sep/2020:22:19:42.702317158 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53197] [29/Sep/2020:22:19:42.713103119 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53379] [29/Sep/2020:22:19:42.716486713 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53494] [29/Sep/2020:22:19:42.720100147 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb3e0002:1601432382:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53675] [29/Sep/2020:22:19:42.723250805 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53831] [29/Sep/2020:22:19:42.726381820 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54072] [29/Sep/2020:22:19:42.729416189 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb36000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54253] [29/Sep/2020:22:19:42.733599417 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54409] [29/Sep/2020:22:19:42.736423475 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54650] [29/Sep/2020:22:19:42.739861635 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb3e000000010000 5f73eb3e [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54812] [29/Sep/2020:22:19:42.743251845 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34900 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55039] [29/Sep/2020:22:19:42.746297376 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34900 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55335] [29/Sep/2020:22:19:42.750342009 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb3e000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb36000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55448] [29/Sep/2020:22:19:42.753476956 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb36000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55639] [29/Sep/2020:22:19:42.759116250 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb36000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55795] [29/Sep/2020:22:19:42.762325784 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55907] [29/Sep/2020:22:19:42.766025579 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56039] [29/Sep/2020:22:19:42.769014856 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56259] [29/Sep/2020:22:19:42.772128978 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb3e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56391] [29/Sep/2020:22:19:42.774897543 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56589] [29/Sep/2020:22:19:42.779489741 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56904] [29/Sep/2020:22:19:42.784145600 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb3e000000010000) csnMax (5f73eb3e000000010000) csnBuf (5f73eb3e000000010000) csnConsumerMax (5f73eb3e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57028] [29/Sep/2020:22:19:42.787088109 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57212] [29/Sep/2020:22:19:42.789836151 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57324] [29/Sep/2020:22:19:42.792466930 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57456] [29/Sep/2020:22:19:42.795190384 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57589] [29/Sep/2020:22:19:42.803555449 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57719] [29/Sep/2020:22:19:42.809259364 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57852] [29/Sep/2020:22:19:42.812258877 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57985] [29/Sep/2020:22:19:42.816365232 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58118] [29/Sep/2020:22:19:42.821549023 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58251] [29/Sep/2020:22:19:42.829018820 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58384] [29/Sep/2020:22:19:42.840119109 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58517] [29/Sep/2020:22:19:42.859311760 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58650] [29/Sep/2020:22:19:42.894367089 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58763] [29/Sep/2020:22:19:42.897472103 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58872] [29/Sep/2020:22:19:42.961590717 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59144] [29/Sep/2020:22:19:42.966130117 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59308] [29/Sep/2020:22:19:42.972151921 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59478] [29/Sep/2020:22:19:42.974804926 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59652] [29/Sep/2020:22:19:42.977480656 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59652] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 59652 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_seven | 9.53 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'12' (expected 13) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'13' (expected 14) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:562 test_schema_replication_seven master_schema_csn=b'5f73eb40000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:563 ctest_schema_replication_seven consumer_schema_csn=b'5f73eb40000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 59653 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59760] 29/Sep/2020:22:19:44.021488075 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59868] [29/Sep/2020:22:19:44.084542422 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59990] [29/Sep/2020:22:19:44.102076101 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb3e0002:1601432382:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60111] [29/Sep/2020:22:19:44.106204153 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb400000:1601432384:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60274] [29/Sep/2020:22:19:44.113445686 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb40000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60454] [29/Sep/2020:22:19:44.117495516 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0be000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60699] [29/Sep/2020:22:19:44.120852255 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60874] [29/Sep/2020:22:19:44.124038375 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb40000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61012] [29/Sep/2020:22:19:44.126570683 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61142] [29/Sep/2020:22:19:44.129271842 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61280] [29/Sep/2020:22:19:44.131883281 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61408] [29/Sep/2020:22:19:44.135241472 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61523] [29/Sep/2020:22:19:44.138347959 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61698] [29/Sep/2020:22:19:44.143207369 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61881] [29/Sep/2020:22:19:44.145805239 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62053] [29/Sep/2020:22:19:44.149036812 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62221] [29/Sep/2020:22:19:44.152531127 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62403] [29/Sep/2020:22:19:44.155082167 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62587] [29/Sep/2020:22:19:44.157513961 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb40000000000000 / remotecsn:5f73eb36000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62750] [29/Sep/2020:22:19:44.276138946 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCA' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62884] [29/Sep/2020:22:19:44.431304820 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb36000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63069] [29/Sep/2020:22:19:44.441678213 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63184] [29/Sep/2020:22:19:44.642063272 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb400002:1601432384:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63365] [29/Sep/2020:22:19:44.667940628 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63521] [29/Sep/2020:22:19:44.671156068 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63762] [29/Sep/2020:22:19:44.674169165 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb3e000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63943] [29/Sep/2020:22:19:44.677195271 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64099] [29/Sep/2020:22:19:44.680140916 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64340] [29/Sep/2020:22:19:44.682843185 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb40000000010000 5f73eb40 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64502] [29/Sep/2020:22:19:44.685120594 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34900 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64729] [29/Sep/2020:22:19:44.687296110 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34900 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65025] [29/Sep/2020:22:19:44.689834008 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb40000000010000) csnBuf (5f73eb3e000000010000) csnConsumerMax (5f73eb3e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65138] [29/Sep/2020:22:19:44.692333112 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb3e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65329] [29/Sep/2020:22:19:44.695532249 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb3e000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65485] [29/Sep/2020:22:19:44.701985006 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65597] [29/Sep/2020:22:19:44.706386484 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65729] [29/Sep/2020:22:19:44.710188742 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65949] [29/Sep/2020:22:19:44.713318799 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb40000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66081] [29/Sep/2020:22:19:44.716175806 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66279] [29/Sep/2020:22:19:44.719304703 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66412] [29/Sep/2020:22:19:44.723670300 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66542] [29/Sep/2020:22:19:44.727217891 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 17, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66675] [29/Sep/2020:22:19:44.732468125 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66808] [29/Sep/2020:22:19:44.736656489 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67123] [29/Sep/2020:22:19:44.741996790 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb40000000010000) csnMax (5f73eb40000000010000) csnBuf (5f73eb40000000010000) csnConsumerMax (5f73eb40000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67247] [29/Sep/2020:22:19:44.747757185 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67431] [29/Sep/2020:22:19:44.750327326 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67544] [29/Sep/2020:22:19:44.753170753 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 17 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67677] [29/Sep/2020:22:19:44.756113943 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67786] [29/Sep/2020:22:19:44.762804227 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68058] [29/Sep/2020:22:19:44.765590962 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68222] [29/Sep/2020:22:19:44.771630558 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68392] [29/Sep/2020:22:19:44.774145734 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68566] [29/Sep/2020:22:19:44.776535632 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68674] [29/Sep/2020:22:19:45.148614562 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68845] [29/Sep/2020:22:19:45.160118055 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69020] [29/Sep/2020:22:19:45.163110413 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69195] [29/Sep/2020:22:19:45.165539257 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69367] [29/Sep/2020:22:19:45.169852580 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69542] [29/Sep/2020:22:19:45.183828513 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69707] [29/Sep/2020:22:19:45.263264128 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-139-159:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69835] [29/Sep/2020:22:19:45.267379570 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70048] [29/Sep/2020:22:19:45.270622996 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb40000000010000 5f73eb40 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70223] [29/Sep/2020:22:19:45.274271488 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70331] [29/Sep/2020:22:19:45.276999015 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70439] [29/Sep/2020:22:19:50.297019929 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70609] [29/Sep/2020:22:19:50.311328719 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70784] [29/Sep/2020:22:19:50.314885927 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70959] [29/Sep/2020:22:19:50.318095228 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71131] [29/Sep/2020:22:19:50.321806651 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71300] [29/Sep/2020:22:19:50.325006791 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71828] [29/Sep/2020:22:19:50.328046144 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - binddn = cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQ1AzTFBlcFRMN2YxeGMyM1pGTDFaYg==}1pRiS3KWqCTtKqTFr9U4pZtS4Ppuwvr2vLAjBH4Lc95/nlD+08QPs6kedVLZkML/ [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71873] amFCMWweOTK3n18Nk8oLLuU9HijJ+Ruy+6yd6K8ACsE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72048] [29/Sep/2020:22:19:50.332376017 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72170] [29/Sep/2020:22:19:50.337009392 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb400002:1601432384:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72291] [29/Sep/2020:22:19:50.339824467 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb460000:1601432390:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72459] [29/Sep/2020:22:19:50.343775059 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72641] [29/Sep/2020:22:19:50.346596951 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72825] [29/Sep/2020:22:19:50.349156599 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb40000000000000 / remotecsn:5f73eb36000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72959] [29/Sep/2020:22:19:50.551596381 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb40000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73074] [29/Sep/2020:22:19:50.555287895 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb460001:1601432390:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73255] [29/Sep/2020:22:19:50.558790152 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73411] [29/Sep/2020:22:19:50.562279940 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73652] [29/Sep/2020:22:19:50.565221308 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb40000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73833] [29/Sep/2020:22:19:50.568408722 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73989] [29/Sep/2020:22:19:50.572489007 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74230] [29/Sep/2020:22:19:50.575896401 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb40000000010000 5f73eb40 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74526] [29/Sep/2020:22:19:50.579001080 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f73eb40000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb40000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74650] [29/Sep/2020:22:19:50.582636349 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74922] [29/Sep/2020:22:19:50.586193069 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=0 sent=0 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75071] [29/Sep/2020:22:19:50.628524841 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75235] [29/Sep/2020:22:19:50.657246202 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75405] [29/Sep/2020:22:19:50.660475117 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75579] [29/Sep/2020:22:19:50.663541886 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75701] [29/Sep/2020:22:19:52.324462153 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb460001:1601432390:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75822] [29/Sep/2020:22:19:52.327627567 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb480000:1601432392:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75985] [29/Sep/2020:22:19:52.330186997 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb48000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76165] [29/Sep/2020:22:19:52.333342235 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0c0000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76410] [29/Sep/2020:22:19:52.336583707 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76585] [29/Sep/2020:22:19:52.339398439 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb48000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76723] [29/Sep/2020:22:19:52.343952105 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76853] [29/Sep/2020:22:19:52.346470384 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76991] [29/Sep/2020:22:19:52.348835835 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77119] [29/Sep/2020:22:19:52.351250894 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77234] [29/Sep/2020:22:19:52.353804747 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77409] [29/Sep/2020:22:19:52.359959166 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77592] [29/Sep/2020:22:19:52.363033381 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77764] [29/Sep/2020:22:19:52.365878419 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77932] [29/Sep/2020:22:19:52.370446168 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78114] [29/Sep/2020:22:19:52.373403112 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78229] [29/Sep/2020:22:19:52.376230647 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb480002:1601432392:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78410] [29/Sep/2020:22:19:52.379180884 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78566] [29/Sep/2020:22:19:52.382348614 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78807] [29/Sep/2020:22:19:52.404197793 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb40000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78988] [29/Sep/2020:22:19:52.408167744 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79144] [29/Sep/2020:22:19:52.411837583 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79385] [29/Sep/2020:22:19:52.415628995 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb48000000010000 5f73eb48 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79547] [29/Sep/2020:22:19:52.420398369 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34a00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79774] [29/Sep/2020:22:19:52.424609037 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34a00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80070] [29/Sep/2020:22:19:52.429986917 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb48000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb40000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80183] [29/Sep/2020:22:19:52.433093975 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb40000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80374] [29/Sep/2020:22:19:52.436062887 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb40000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80530] [29/Sep/2020:22:19:52.440158867 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80750] [29/Sep/2020:22:19:52.444078097 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb48000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80862] [29/Sep/2020:22:19:52.450570698 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80994] [29/Sep/2020:22:19:52.455300333 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81192] [29/Sep/2020:22:19:52.463881509 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81325] [29/Sep/2020:22:19:52.468232356 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81455] [29/Sep/2020:22:19:52.471864960 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81588] [29/Sep/2020:22:19:52.475465053 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81903] [29/Sep/2020:22:19:52.478195060 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb48000000010000) csnMax (5f73eb48000000010000) csnBuf (5f73eb48000000010000) csnConsumerMax (5f73eb48000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82027] [29/Sep/2020:22:19:52.482214735 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82211] [29/Sep/2020:22:19:52.485736394 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82324] [29/Sep/2020:22:19:52.490408599 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82457] [29/Sep/2020:22:19:52.493995027 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82566] [29/Sep/2020:22:19:52.499523884 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82838] [29/Sep/2020:22:19:52.503230438 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83002] [29/Sep/2020:22:19:52.512632744 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83172] [29/Sep/2020:22:19:52.515773735 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83346] [29/Sep/2020:22:19:52.523033062 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83346] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 83346 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_eight | 11.80 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed (fix for 47721) [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'14' (expected 15) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'15' (expected 16) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:625 test_schema_replication_eight master_schema_csn=b'5f73eb4c000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:626 ctest_schema_replication_eight onsumer_schema_csn=b'5f73eb4c000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 83347 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83454] 29/Sep/2020:22:19:55.871466407 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83562] [29/Sep/2020:22:19:55.938304685 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83684] [29/Sep/2020:22:19:55.954420856 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb480002:1601432392:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83805] [29/Sep/2020:22:19:55.957776800 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb4b0000:1601432395:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83968] [29/Sep/2020:22:19:55.960831232 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb4b000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84148] [29/Sep/2020:22:19:55.963584628 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0c8000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84393] [29/Sep/2020:22:19:55.966732022 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84568] [29/Sep/2020:22:19:55.969727448 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb4b000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84706] [29/Sep/2020:22:19:55.972580506 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84836] [29/Sep/2020:22:19:55.975501539 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84974] [29/Sep/2020:22:19:55.979102648 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85102] [29/Sep/2020:22:19:55.982405884 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85217] [29/Sep/2020:22:19:55.985291793 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85392] [29/Sep/2020:22:19:55.990061832 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85575] [29/Sep/2020:22:19:55.994459965 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85747] [29/Sep/2020:22:19:55.998138344 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85869] [29/Sep/2020:22:19:56.004311626 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb4b0001:1601432395:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85990] [29/Sep/2020:22:19:56.008198767 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb4c0000:1601432396:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86158] [29/Sep/2020:22:19:56.013855664 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86340] [29/Sep/2020:22:19:56.018657845 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86524] [29/Sep/2020:22:19:56.022051017 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb4b000000000000 / remotecsn:5f73eb40000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86687] [29/Sep/2020:22:19:56.140331334 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86852] [29/Sep/2020:22:19:56.175897200 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'consumerNewOCA' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87006] [29/Sep/2020:22:19:56.180071490 -0400] - DEBUG - schema_oc_superset_check - Remote consumerNewOCA schema objectclasses is a superset of the received one. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87169] [29/Sep/2020:22:19:56.185424578 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87334] [29/Sep/2020:22:19:56.189241061 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'consumerNewOCA' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87484] [29/Sep/2020:22:19:56.192783882 -0400] - DEBUG - schema_list_oc2learn - Add that unknown/extended objectclass consumerNewOCA (1.2.3.4.5.6.7.8.9.10.1) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87784] [29/Sep/2020:22:19:56.195943742 -0400] - DEBUG - schema_oc_to_string - Replace (old[265]=( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' )) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88113] [29/Sep/2020:22:19:56.199474880 -0400] - DEBUG - supplier_get_new_definitions - supplier takes objectclass: ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street $ postOfficeBox ) X-ORIGIN 'user defined' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88429] [29/Sep/2020:22:19:56.215853699 -0400] - DEBUG - modify_schema_prepare_mods - MOD[1] del (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88756] [29/Sep/2020:22:19:56.219906276 -0400] - DEBUG - modify_schema_prepare_mods - MOD[0] add (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street $ postOfficeBox ) X-ORIGIN 'user defined' ) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88864] [29/Sep/2020:22:19:56.224302243 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88987] [29/Sep/2020:22:19:56.229671244 -0400] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89201] [29/Sep/2020:22:19:56.234224804 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-139-159:39201) must not be overwritten (set replication log for additional info) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 89201 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_nine | 9.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:schema_replication_test.py:41 ############################################### [32mINFO [0m lib389:schema_replication_test.py:42 ####### [32mINFO [0m lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed - no error [32mINFO [0m lib389:schema_replication_test.py:44 ####### [32mINFO [0m lib389:schema_replication_test.py:45 ################################################### [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'16' (expected 17) [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'17' (expected 18) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:683 test_schema_replication_nine master_schema_csn=b'5f73eb55000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:684 ctest_schema_replication_nine onsumer_schema_csn=b'5f73eb55000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 89202 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89338] 29/Sep/2020:22:19:56.237643289 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] schema definitions may have been learned [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89501] [29/Sep/2020:22:19:56.359415996 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89635] [29/Sep/2020:22:19:56.428850349 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb49000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89820] [29/Sep/2020:22:19:56.433032055 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89935] [29/Sep/2020:22:19:56.617084590 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb4c0001:1601432396:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90116] [29/Sep/2020:22:19:56.626042041 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90272] [29/Sep/2020:22:19:56.631791780 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90513] [29/Sep/2020:22:19:56.635428662 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb48000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90694] [29/Sep/2020:22:19:56.639129506 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90850] [29/Sep/2020:22:19:56.642869900 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91091] [29/Sep/2020:22:19:56.646782381 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb4b000000010000 5f73eb4b [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91253] [29/Sep/2020:22:19:56.650441682 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34a00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91480] [29/Sep/2020:22:19:56.653664060 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34a00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91776] [29/Sep/2020:22:19:56.656965665 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb4b000000010000) csnBuf (5f73eb48000000010000) csnConsumerMax (5f73eb48000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91889] [29/Sep/2020:22:19:56.660361840 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb48000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92080] [29/Sep/2020:22:19:56.664085428 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb48000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92236] [29/Sep/2020:22:19:56.668185467 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92456] [29/Sep/2020:22:19:56.672157035 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb4b000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92568] [29/Sep/2020:22:19:56.676058010 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92766] [29/Sep/2020:22:19:56.679565494 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92899] [29/Sep/2020:22:19:56.683082043 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93029] [29/Sep/2020:22:19:56.686721410 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 19, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93344] [29/Sep/2020:22:19:56.690955378 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb4b000000010000) csnMax (5f73eb4b000000010000) csnBuf (5f73eb4b000000010000) csnConsumerMax (5f73eb4b000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93468] [29/Sep/2020:22:19:56.694916968 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93652] [29/Sep/2020:22:19:56.701064518 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93765] [29/Sep/2020:22:19:56.705310072 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 19 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93898] [29/Sep/2020:22:19:56.709092298 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94007] [29/Sep/2020:22:19:56.713837568 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94279] [29/Sep/2020:22:19:56.718676579 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94443] [29/Sep/2020:22:19:56.727872794 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94613] [29/Sep/2020:22:19:56.732658808 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94787] [29/Sep/2020:22:19:56.749614658 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94895] [29/Sep/2020:22:19:56.996593546 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95066] [29/Sep/2020:22:19:57.010303751 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95241] [29/Sep/2020:22:19:57.014518568 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95416] [29/Sep/2020:22:19:57.018384026 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95588] [29/Sep/2020:22:19:57.022554020 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95763] [29/Sep/2020:22:19:57.026332150 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95928] [29/Sep/2020:22:19:57.114775716 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-139-159:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96056] [29/Sep/2020:22:19:57.120836363 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96269] [29/Sep/2020:22:19:57.124629670 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb4b000000010000 5f73eb4b [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96444] [29/Sep/2020:22:19:57.128618509 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96552] [29/Sep/2020:22:19:57.132422011 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96660] [29/Sep/2020:22:20:02.151212115 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96830] [29/Sep/2020:22:20:02.172726146 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97005] [29/Sep/2020:22:20:02.177361559 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97180] [29/Sep/2020:22:20:02.181774060 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97352] [29/Sep/2020:22:20:02.186115109 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97521] [29/Sep/2020:22:20:02.189865154 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98049] [29/Sep/2020:22:20:02.193359389 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - binddn = cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQ1AzTFBlcFRMN2YxeGMyM1pGTDFaYg==}1pRiS3KWqCTtKqTFr9U4pZtS4Ppuwvr2vLAjBH4Lc95/nlD+08QPs6kedVLZkML/ [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98094] amFCMWweOTK3n18Nk8oLLuU9HijJ+Ruy+6yd6K8ACsE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98269] [29/Sep/2020:22:20:02.198712577 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98391] [29/Sep/2020:22:20:02.207269285 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb4c0001:1601432396:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98512] [29/Sep/2020:22:20:02.212425680 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb520000:1601432402:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98680] [29/Sep/2020:22:20:02.217650314 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98862] [29/Sep/2020:22:20:02.221490299 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99046] [29/Sep/2020:22:20:02.225457706 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb4c000000000000 / remotecsn:5f73eb49000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99180] [29/Sep/2020:22:20:02.429639075 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb4b000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99365] [29/Sep/2020:22:20:02.434547098 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99480] [29/Sep/2020:22:20:02.658807191 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb520001:1601432402:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99661] [29/Sep/2020:22:20:02.665174129 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99817] [29/Sep/2020:22:20:02.668873821 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100058] [29/Sep/2020:22:20:02.672435180 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb4b000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100239] [29/Sep/2020:22:20:02.677747539 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100395] [29/Sep/2020:22:20:02.685628204 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100636] [29/Sep/2020:22:20:02.689095202 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb4b000000010000 5f73eb4b [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100932] [29/Sep/2020:22:20:02.692331472 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f73eb4b000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb4b000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101056] [29/Sep/2020:22:20:02.695386686 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101328] [29/Sep/2020:22:20:02.698776718 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=0 sent=0 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101477] [29/Sep/2020:22:20:02.702872256 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101641] [29/Sep/2020:22:20:02.718394732 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101811] [29/Sep/2020:22:20:02.721732470 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101985] [29/Sep/2020:22:20:02.724813858 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102107] [29/Sep/2020:22:20:04.187243912 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb520001:1601432402:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102228] [29/Sep/2020:22:20:04.193081484 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb540000:1601432404:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102391] [29/Sep/2020:22:20:04.197398325 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb54000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102571] [29/Sep/2020:22:20:04.201506051 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0cb000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102816] [29/Sep/2020:22:20:04.208219447 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102991] [29/Sep/2020:22:20:04.214011857 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb54000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103129] [29/Sep/2020:22:20:04.223300530 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103259] [29/Sep/2020:22:20:04.227997388 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103397] [29/Sep/2020:22:20:04.232342812 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103525] [29/Sep/2020:22:20:04.236970016 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103640] [29/Sep/2020:22:20:04.243308423 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103815] [29/Sep/2020:22:20:04.255526968 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103998] [29/Sep/2020:22:20:04.259387973 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104170] [29/Sep/2020:22:20:04.262460438 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104338] [29/Sep/2020:22:20:04.267052660 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104520] [29/Sep/2020:22:20:04.270308253 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104704] [29/Sep/2020:22:20:04.273653343 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb4c000000000000 / remotecsn:5f73eb4b000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104838] [29/Sep/2020:22:20:04.464761416 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb4c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104953] [29/Sep/2020:22:20:04.469576998 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb540002:1601432404:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105134] [29/Sep/2020:22:20:04.473601793 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105290] [29/Sep/2020:22:20:04.478029317 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105531] [29/Sep/2020:22:20:04.481287049 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb4b000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105712] [29/Sep/2020:22:20:04.485399322 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105868] [29/Sep/2020:22:20:04.489644039 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106109] [29/Sep/2020:22:20:04.493364631 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb54000000010000 5f73eb54 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106271] [29/Sep/2020:22:20:04.497207763 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ee9ee00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106498] [29/Sep/2020:22:20:04.501596402 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ee9ee00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106794] [29/Sep/2020:22:20:04.506472403 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb54000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb4b000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106907] [29/Sep/2020:22:20:04.511445744 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb4b000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107098] [29/Sep/2020:22:20:04.516818493 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb4b000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107254] [29/Sep/2020:22:20:04.568075688 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107366] [29/Sep/2020:22:20:04.572488906 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107586] [29/Sep/2020:22:20:04.576237021 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb54000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107784] [29/Sep/2020:22:20:04.581367001 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108099] [29/Sep/2020:22:20:04.585678579 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb54000000010000) csnMax (5f73eb54000000010000) csnBuf (5f73eb54000000010000) csnConsumerMax (5f73eb54000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108223] [29/Sep/2020:22:20:04.592066468 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108407] [29/Sep/2020:22:20:04.595798115 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108519] [29/Sep/2020:22:20:04.601366117 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108651] [29/Sep/2020:22:20:04.609185815 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108784] [29/Sep/2020:22:20:04.617801560 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108914] [29/Sep/2020:22:20:04.622983191 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 14, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109047] [29/Sep/2020:22:20:04.627131594 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109180] [29/Sep/2020:22:20:04.632359092 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109313] [29/Sep/2020:22:20:04.641076937 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109446] [29/Sep/2020:22:20:04.650393827 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109579] [29/Sep/2020:22:20:04.662596901 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109712] [29/Sep/2020:22:20:04.682961014 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109825] [29/Sep/2020:22:20:04.709324379 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 14 14 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109934] [29/Sep/2020:22:20:04.719035885 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110206] [29/Sep/2020:22:20:04.724462756 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110370] [29/Sep/2020:22:20:04.733152062 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110540] [29/Sep/2020:22:20:04.736788987 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110714] [29/Sep/2020:22:20:04.743350627 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110822] [29/Sep/2020:22:20:05.606724509 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110930] [29/Sep/2020:22:20:05.676516508 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111052] [29/Sep/2020:22:20:05.692117051 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb540002:1601432404:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111173] [29/Sep/2020:22:20:05.696560209 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb550000:1601432405:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111336] [29/Sep/2020:22:20:05.700346707 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb55000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111516] [29/Sep/2020:22:20:05.704608298 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0d4000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111761] [29/Sep/2020:22:20:05.716627558 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111936] [29/Sep/2020:22:20:05.720769047 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb55000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112074] [29/Sep/2020:22:20:05.724102654 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112204] [29/Sep/2020:22:20:05.727215005 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112342] [29/Sep/2020:22:20:05.730476961 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112470] [29/Sep/2020:22:20:05.739007829 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112585] [29/Sep/2020:22:20:05.742789203 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112760] [29/Sep/2020:22:20:05.748578644 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112943] [29/Sep/2020:22:20:05.752019178 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113115] [29/Sep/2020:22:20:05.756020684 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113283] [29/Sep/2020:22:20:05.760932054 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113465] [29/Sep/2020:22:20:05.764972478 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113649] [29/Sep/2020:22:20:05.768180655 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb55000000000000 / remotecsn:5f73eb4c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113783] [29/Sep/2020:22:20:05.975885884 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb4c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113968] [29/Sep/2020:22:20:05.980115409 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114083] [29/Sep/2020:22:20:06.174090604 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb550002:1601432405:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114205] [29/Sep/2020:22:20:06.179230554 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb550002:1601432405:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114326] [29/Sep/2020:22:20:06.182851281 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb560000:1601432406:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114507] [29/Sep/2020:22:20:06.186737544 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114663] [29/Sep/2020:22:20:06.190070660 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114904] [29/Sep/2020:22:20:06.195872001 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb54000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115085] [29/Sep/2020:22:20:06.200209429 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115241] [29/Sep/2020:22:20:06.204333586 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115482] [29/Sep/2020:22:20:06.208110227 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb55000000010000 5f73eb55 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115644] [29/Sep/2020:22:20:06.212474753 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ee9ee00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115871] [29/Sep/2020:22:20:06.216215144 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ee9ee00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116167] [29/Sep/2020:22:20:06.220065262 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb55000000010000) csnBuf (5f73eb54000000010000) csnConsumerMax (5f73eb54000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116280] [29/Sep/2020:22:20:06.223567974 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb54000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116471] [29/Sep/2020:22:20:06.227170900 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb54000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116627] [29/Sep/2020:22:20:06.231330636 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116739] [29/Sep/2020:22:20:06.235308729 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116871] [29/Sep/2020:22:20:06.238950334 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117091] [29/Sep/2020:22:20:06.244625089 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb55000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117223] [29/Sep/2020:22:20:06.248475813 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117421] [29/Sep/2020:22:20:06.253311223 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117736] [29/Sep/2020:22:20:06.256965096 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb55000000010000) csnMax (5f73eb55000000010000) csnBuf (5f73eb55000000010000) csnConsumerMax (5f73eb55000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117860] [29/Sep/2020:22:20:06.260807608 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118044] [29/Sep/2020:22:20:06.265127127 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118156] [29/Sep/2020:22:20:06.268977238 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118289] [29/Sep/2020:22:20:06.273403077 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118419] [29/Sep/2020:22:20:06.280037046 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 21, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118552] [29/Sep/2020:22:20:06.283723379 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118685] [29/Sep/2020:22:20:06.288651606 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118818] [29/Sep/2020:22:20:06.294898477 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118951] [29/Sep/2020:22:20:06.305415812 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119084] [29/Sep/2020:22:20:06.317906190 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119217] [29/Sep/2020:22:20:06.341613810 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119330] [29/Sep/2020:22:20:06.373476593 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 21 21 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119439] [29/Sep/2020:22:20:06.379032912 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119711] [29/Sep/2020:22:20:06.382833505 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119875] [29/Sep/2020:22:20:06.390359649 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120045] [29/Sep/2020:22:20:06.394015026 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120219] [29/Sep/2020:22:20:06.398097981 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120327] [29/Sep/2020:22:20:06.401748955 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120442] [29/Sep/2020:22:20:06.410413217 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120550] [29/Sep/2020:22:20:06.753938360 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120721] [29/Sep/2020:22:20:06.759820020 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120896] [29/Sep/2020:22:20:06.764292768 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121071] [29/Sep/2020:22:20:06.769997381 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121243] [29/Sep/2020:22:20:06.780392042 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121418] [29/Sep/2020:22:20:06.784562320 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121583] [29/Sep/2020:22:20:06.864655003 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-139-159:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121711] [29/Sep/2020:22:20:06.868690288 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121924] [29/Sep/2020:22:20:06.872849308 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb55000000010000 5f73eb55 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122099] [29/Sep/2020:22:20:06.876728112 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122207] [29/Sep/2020:22:20:06.880677912 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122315] [29/Sep/2020:22:20:11.900695772 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122485] [29/Sep/2020:22:20:11.909345888 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-139-159:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122660] [29/Sep/2020:22:20:11.914312880 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122835] [29/Sep/2020:22:20:11.919062308 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123007] [29/Sep/2020:22:20:11.923174423 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123176] [29/Sep/2020:22:20:11.926441669 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123704] [29/Sep/2020:22:20:11.929521961 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-139-159:39201) - binddn = cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQ1AzTFBlcFRMN2YxeGMyM1pGTDFaYg==}1pRiS3KWqCTtKqTFr9U4pZtS4Ppuwvr2vLAjBH4Lc95/nlD+08QPs6kedVLZkML/ [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123749] amFCMWweOTK3n18Nk8oLLuU9HijJ+Ruy+6yd6K8ACsE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123924] [29/Sep/2020:22:20:11.934471703 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124046] [29/Sep/2020:22:20:11.940401049 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb560000:1601432406:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124167] [29/Sep/2020:22:20:11.944133019 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb5b0000:1601432411:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124335] [29/Sep/2020:22:20:11.952100156 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124517] [29/Sep/2020:22:20:11.956417856 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124701] [29/Sep/2020:22:20:11.959275734 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f73eb55000000000000 / remotecsn:5f73eb4c000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124835] [29/Sep/2020:22:20:12.156094676 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f73eb55000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124950] [29/Sep/2020:22:20:12.158929279 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb5b0001:1601432411:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125072] [29/Sep/2020:22:20:12.161857859 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb5b0001:1601432411:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125193] [29/Sep/2020:22:20:12.165660966 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb5c0000:1601432412:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125374] [29/Sep/2020:22:20:12.169370832 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125530] [29/Sep/2020:22:20:12.172087773 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125771] [29/Sep/2020:22:20:12.174865497 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb55000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125952] [29/Sep/2020:22:20:12.180723414 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126108] [29/Sep/2020:22:20:12.184176927 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126349] [29/Sep/2020:22:20:12.187118426 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb55000000010000 5f73eb55 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126645] [29/Sep/2020:22:20:12.189839160 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f73eb55000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb55000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126769] [29/Sep/2020:22:20:12.192376347 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127041] [29/Sep/2020:22:20:12.196134464 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=0 sent=0 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127190] [29/Sep/2020:22:20:12.202738477 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127354] [29/Sep/2020:22:20:12.208928044 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127524] [29/Sep/2020:22:20:12.212615144 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127698] [29/Sep/2020:22:20:12.219880856 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127820] [29/Sep/2020:22:20:13.924210438 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f73eb5c0000:1601432412:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127941] [29/Sep/2020:22:20:13.929576615 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f73eb5d0000:1601432413:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128104] [29/Sep/2020:22:20:13.934303777 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f73eb5d000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128284] [29/Sep/2020:22:20:13.937222770 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f6ab0d5000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128529] [29/Sep/2020:22:20:13.940373925 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 3a9a488a-02c311eb-bcd5a3c8-fb630e44, optype: 8) to changelog csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128704] [29/Sep/2020:22:20:13.943816807 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f73eb5d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128842] [29/Sep/2020:22:20:13.946631363 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128972] [29/Sep/2020:22:20:13.949628451 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129110] [29/Sep/2020:22:20:13.952625402 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129238] [29/Sep/2020:22:20:13.955332758 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129353] [29/Sep/2020:22:20:13.958016754 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129528] [29/Sep/2020:22:20:13.963903316 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129711] [29/Sep/2020:22:20:13.966934135 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129883] [29/Sep/2020:22:20:13.972255919 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-139-159:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130051] [29/Sep/2020:22:20:13.978916149 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130233] [29/Sep/2020:22:20:13.982014968 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130348] [29/Sep/2020:22:20:13.985027491 -0400] - DEBUG - csngen_adjust_time - gen state before 5f73eb5d0002:1601432413:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130529] [29/Sep/2020:22:20:13.988082590 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130685] [29/Sep/2020:22:20:13.990842734 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130926] [29/Sep/2020:22:20:13.993660741 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb55000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131107] [29/Sep/2020:22:20:13.996633998 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-139-159:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131263] [29/Sep/2020:22:20:14.005916094 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replicageneration} 5f73eafa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131504] [29/Sep/2020:22:20:14.009742334 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-139-159:39201): {replica 1 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001} 5f73eafb000000010000 5f73eb5d000000010000 5f73eb5d [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131666] [29/Sep/2020:22:20:14.014410300 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - found thread private buffer cache 0x7f489ed34c00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131893] [29/Sep/2020:22:20:14.022251615 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_buffer - _pool is 0x7f48cac6d3a0 _pool->pl_busy_lists is 0x7f489ed4c6e0 _pool->pl_busy_lists->bl_buffers is 0x7f489ed34c00 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132189] [29/Sep/2020:22:20:14.028340041 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f73eb5d000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f73eb55000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132302] [29/Sep/2020:22:20:14.031521147 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f73eb55000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132493] [29/Sep/2020:22:20:14.035123434 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-139-159:39201): CSN 5f73eb55000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132649] [29/Sep/2020:22:20:14.038379064 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_get_next_change - load=1 rec=1 csn=5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132761] [29/Sep/2020:22:20:14.041192815 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132893] [29/Sep/2020:22:20:14.043985461 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133113] [29/Sep/2020:22:20:14.046916215 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f73eb5d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133245] [29/Sep/2020:22:20:14.049225748 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133443] [29/Sep/2020:22:20:14.052524135 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-139-159:39201): Consumer successfully sent operation with csn 5f73eb5d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133758] [29/Sep/2020:22:20:14.056971175 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-139-159:39201) - (cscb 0 - state 1) - csnPrevMax (5f73eb5d000000010000) csnMax (5f73eb5d000000010000) csnBuf (5f73eb5d000000010000) csnConsumerMax (5f73eb5d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133882] [29/Sep/2020:22:20:14.059889940 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134066] [29/Sep/2020:22:20:14.066746283 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-139-159:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134178] [29/Sep/2020:22:20:14.070902137 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134310] [29/Sep/2020:22:20:14.075509216 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134443] [29/Sep/2020:22:20:14.084281461 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134573] [29/Sep/2020:22:20:14.087786766 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 11, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134706] [29/Sep/2020:22:20:14.090274377 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134839] [29/Sep/2020:22:20:14.094082037 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134972] [29/Sep/2020:22:20:14.099179270 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135105] [29/Sep/2020:22:20:14.108080855 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135238] [29/Sep/2020:22:20:14.119968146 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135371] [29/Sep/2020:22:20:14.139954195 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135484] [29/Sep/2020:22:20:14.175616579 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135593] [29/Sep/2020:22:20:14.179171457 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135865] [29/Sep/2020:22:20:14.183744260 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-139-159:39201) - clcache_return_buffer - session end: state=5 load=1 sent=1 skipped=0 skipped_new_rid=0 skipped_csn_gt_cons_maxcsn=0 skipped_up_to_date=0 skipped_csn_gt_ruv=0 skipped_csn_covered=0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136029] [29/Sep/2020:22:20:14.190157145 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-139-159:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136199] [29/Sep/2020:22:20:14.193211253 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-139-159:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136373] [29/Sep/2020:22:20:14.196023602 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-139-159:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136373] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 136373 [32mINFO [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:693 Testcase PASSED | |||
Passed | suites/schema/schema_test.py::test_schema_comparewithfiles | 0.13 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.schema.schema_test:schema_test.py:125 Running test_schema_comparewithfiles... [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /etc/dirsrv/slapd-standalone1/schema/99user.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10mep-plugin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60autofs.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10automember-plugin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/25java-object.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/00core.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/30ns-common.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60pam-plugin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60posix-winsync-plugin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/28pilot.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/02common.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-directory.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10dna-plugin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-admin.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/20subscriber.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10rfc2307compat.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60samba3.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60trust.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60mozilla.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60pureftpd.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc4524.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60nss-ldap.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-certificate.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60eduperson.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc2927.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60acctpolicy.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-web.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60sudo.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60rfc3712.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-mail.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/01core389.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc4523.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-value.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60sabayon.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/06inetorgperson.ldif as a schema file - skipping [33mWARNING [0m tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60rfc2739.ldif as a schema file - skipping [32mINFO [0m tests.suites.schema.schema_test:schema_test.py:166 test_schema_comparewithfiles: PASSED | |||
Passed | suites/setup_ds/dscreate_test.py::test_setup_ds_minimal_dry | 0.17 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m lib389:dscreate_test.py:42 Instance allocated [35mDEBUG [0m lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone -------------------------------Captured log call-------------------------------- [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone [32mINFO [0m LogCapture.SetupDs:setup.py:670 NOOP: Dry run requested [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone | |||
Passed | suites/setup_ds/dscreate_test.py::test_setup_ds_minimal | 27.67 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m lib389:dscreate_test.py:42 Instance allocated [35mDEBUG [0m lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone -------------------------------Captured log call-------------------------------- [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone [35mDEBUG [0m lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:566 Allocate <class 'lib389.DirSrv'> with /var/run/slapd-standalone.socket [35mDEBUG [0m lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with localhost:54321 [35mDEBUG [0m lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with localhost:54321 [35mDEBUG [0m lib389:nss_ssl.py:195 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/slapd-standalone -f /etc/dirsrv/slapd-standalone/pwdfile.txt [35mDEBUG [0m lib389:nss_ssl.py:197 nss output: [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:195 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/ssca/ -f /etc/dirsrv/ssca//pwdfile.txt [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:197 nss output: [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:278 nss cmd: /usr/bin/certutil -S -n Self-Signed-CA -s CN=ssca.389ds.example.com,O=testing,L=389ds,ST=Queensland,C=AU -x -g 4096 -t CT,, -v 24 -2 --keyUsage certSigning -d /etc/dirsrv/ssca/ -z /etc/dirsrv/ssca//noise.txt -f /etc/dirsrv/ssca//pwdfile.txt [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:280 nss output: Is this a CA certificate [y/N]? Enter the path length constraint, enter to skip [<0 for unlimited path]: > Is this a critical extension [y/N]? [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:292 nss cmd: /usr/bin/certutil -L -n Self-Signed-CA -d /etc/dirsrv/ssca/ -a [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:240 nss cmd: /usr/bin/openssl rehash /etc/dirsrv/ssca/ [35mDEBUG [0m lib389:nss_ssl.py:557 CSR subject -> CN=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com,givenName=8208cf4c-48d7-4538-ad61-1ba91c8f0ac8,O=testing,L=389ds,ST=Queensland,C=AU [35mDEBUG [0m lib389:nss_ssl.py:558 CSR alt_names -> ['ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com'] [35mDEBUG [0m lib389:nss_ssl.py:590 nss cmd: /usr/bin/certutil -R --keyUsage digitalSignature,nonRepudiation,keyEncipherment,dataEncipherment --nsCertType sslClient,sslServer --extKeyUsage clientAuth,serverAuth -s CN=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com,givenName=8208cf4c-48d7-4538-ad61-1ba91c8f0ac8,O=testing,L=389ds,ST=Queensland,C=AU -8 ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com -g 4096 -d /etc/dirsrv/slapd-standalone -z /etc/dirsrv/slapd-standalone/noise.txt -f /etc/dirsrv/slapd-standalone/pwdfile.txt -a -o /etc/dirsrv/slapd-standalone/Server-Cert.csr [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:616 nss cmd: /usr/bin/certutil -C -d /etc/dirsrv/ssca/ -f /etc/dirsrv/ssca//pwdfile.txt -v 24 -a -i /etc/dirsrv/slapd-standalone/Server-Cert.csr -o /etc/dirsrv/slapd-standalone/Server-Cert.crt -c Self-Signed-CA [35mDEBUG [0m lib389:nss_ssl.py:240 nss cmd: /usr/bin/openssl rehash /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:nss_ssl.py:644 nss cmd: /usr/bin/certutil -A -n Self-Signed-CA -t CT,, -a -i /etc/dirsrv/slapd-standalone/ca.crt -d /etc/dirsrv/slapd-standalone -f /etc/dirsrv/slapd-standalone/pwdfile.txt [35mDEBUG [0m lib389:nss_ssl.py:659 nss cmd: /usr/bin/certutil -A -n Server-Cert -t ,, -a -i /etc/dirsrv/slapd-standalone/Server-Cert.crt -d /etc/dirsrv/slapd-standalone -f /etc/dirsrv/slapd-standalone/pwdfile.txt [35mDEBUG [0m lib389:nss_ssl.py:668 nss cmd: /usr/bin/certutil -V -d /etc/dirsrv/slapd-standalone -n Server-Cert -u YCV [35mDEBUG [0m lib389.utils:utils.py:284 port 636 already in [389, 636, 3268, 3269, 7389], skipping port relabel [35mDEBUG [0m lib389.utils:utils.py:315 CMD: semanage port -a -t ldap_port_t -p tcp 54321 ; STDOUT: ; STDERR: [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1133 systemd status -> True [35mDEBUG [0m lib389:__init__.py:993 open(): Connecting to uri ldapi://%2Fvar%2Frun%2Fslapd-standalone.socket [35mDEBUG [0m lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1031 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1065 open(): Using root autobind ... [35mDEBUG [0m lib389:__init__.py:1086 open(): bound as cn=Directory Manager [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.273.2316 ] [35mDEBUG [0m lib389:__init__.py:993 open(): Connecting to uri ldapi://%2Fvar%2Frun%2Fslapd-standalone.socket [35mDEBUG [0m lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1031 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1065 open(): Using root autobind ... [35mDEBUG [0m lib389:__init__.py:1086 open(): bound as cn=Directory Manager [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.273.2316 ] [35mDEBUG [0m Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-secureport', '636') [35mDEBUG [0m Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-security', 'on') [35mDEBUG [0m Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-rootpw', '********') [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1202 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1133 systemd status -> True [35mDEBUG [0m lib389:__init__.py:993 open(): Connecting to uri ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1031 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1086 open(): bound as cn=Directory Manager [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.273.2316 ] [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1202 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1133 systemd status -> True [35mDEBUG [0m lib389:__init__.py:993 open(): Connecting to uri ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1031 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1086 open(): bound as cn=Directory Manager [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.273.2316 ] [35mDEBUG [0m lib389.remove_ds:remove.py:38 Removing instance standalone [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-bakdir: /var/lib/dirsrv/slapd-standalone/bak ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-certdir: /etc/dirsrv/slapd-standalone ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=bdb,cn=config,cn=ldbm database,cn=plugins,cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=bdb,cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-db-home-directory: /var/lib/dirsrv/slapd-standalone/db ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-ldifdir: /var/lib/dirsrv/slapd-standalone/ldif ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-lockdir: /var/lock/dirsrv/slapd-standalone ] [35mDEBUG [0m lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] [35mDEBUG [0m lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-instancedir: /usr/lib64/dirsrv/slapd-standalone ] [35mDEBUG [0m lib389.remove_ds:remove.py:67 Checking for instance marker at /etc/dirsrv/slapd-standalone/dse.ldif [35mDEBUG [0m lib389.remove_ds:remove.py:72 Found instance marker at /etc/dirsrv/slapd-standalone/dse.ldif! Proceeding to remove ... [35mDEBUG [0m lib389.remove_ds:remove.py:76 Stopping instance standalone [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1202 systemd status -> True [35mDEBUG [0m lib389.remove_ds:remove.py:79 Found instance marker at /etc/dirsrv/slapd-standalone/dse.ldif! Proceeding to remove ... [35mDEBUG [0m lib389.remove_ds:remove.py:83 Stopping instance standalone [35mDEBUG [0m lib389:__init__.py:1229 systemd status -> True [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/bak [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db/../ [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/changelogdb [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/ldif [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/lock/dirsrv/slapd-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /var/log/dirsrv/slapd-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /usr/lib64/dirsrv/slapd-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:92 Removing /etc/sysconfig/dirsrv-standalone [35mDEBUG [0m lib389.remove_ds:remove.py:101 Removing the systemd symlink [35mDEBUG [0m lib389.remove_ds:remove.py:108 CMD: systemctl disable dirsrv@standalone ; STDOUT: ; STDERR: Removed /etc/systemd/system/multi-user.target.wants/dirsrv@standalone.service. [35mDEBUG [0m lib389.remove_ds:remove.py:110 Removing /etc/tmpfiles.d/dirsrv-standalone.conf [35mDEBUG [0m lib389.remove_ds:remove.py:119 Removing the port labels [35mDEBUG [0m lib389.remove_ds:remove.py:149 Moving /etc/dirsrv/slapd-standalone to /etc/dirsrv/slapd-standalone.removed [35mDEBUG [0m lib389.remove_ds:remove.py:159 Complete | |||
Passed | suites/setup_ds/dscreate_test.py::test_setup_ds_inf_minimal | 0.00 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m lib389:dscreate_test.py:42 Instance allocated [35mDEBUG [0m lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone | |||
Passed | suites/setup_ds/remove_test.py::test_basic[True] | 3.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/setup_ds/remove_test.py::test_basic[False] | 4.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/setup_ds/setup_ds_test.py::test_slapd_InstScriptsEnabled[true] | 7.07 | |
------------------------------Captured stdout call------------------------------ Instance slapd-standalone1 removed. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:63 set SER_INST_SCRIPTS_ENABLED to true [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:20 create_instance - Installs the instance and Sets the value of InstScriptsEnabled to true OR false. [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:22 Set up the instance and set the config_attr [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:68 checking the presence of instance script directory when SER_INST_SCRIPTS_ENABLED is set to true | |||
Passed | suites/setup_ds/setup_ds_test.py::test_slapd_InstScriptsEnabled[false] | 7.44 | |
------------------------------Captured stdout call------------------------------ Instance slapd-standalone1 removed. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:63 set SER_INST_SCRIPTS_ENABLED to false [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:20 create_instance - Installs the instance and Sets the value of InstScriptsEnabled to true OR false. [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:22 Set up the instance and set the config_attr [32mINFO [0m tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:72 checking instance script directory does not present when SER_INST_SCRIPTS_ENABLED is set to false | |||
Passed | suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr1-ldap.MOD_ADD-exp_values0-vucsn] | 0.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 218b8604-c540-47a9-a02c-7e1ca9d31318 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect fa31c297-0995-4355-aa5b-ec8b7d2972b5 / got description=218b8604-c540-47a9-a02c-7e1ca9d31318) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr2-ldap.MOD_ADD-exp_values1-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr3-ldap.MOD_ADD-exp_values2-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr4-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr4-ldap.MOD_DELETE-exp_values4-vdcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN1-ldap.MOD_ADD-exp_values0-vucsn] | 0.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN2-ldap.MOD_ADD-exp_values1-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestnewCN3-ldap.MOD_REPLACE-exp_values2-adcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestnewCN3-ldap.MOD_DELETE-None-None] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-Chinese-ldap.MOD_REPLACE-exp_values0-vucsn] | 0.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-French-ldap.MOD_ADD-None-None] | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-German-ldap.MOD_REPLACE-exp_values2-adcsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-German-ldap.MOD_DELETE-exp_values3-vdcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower1-ldap.MOD_ADD-exp_values0-vucsn] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower2-ldap.MOD_ADD-exp_values1-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower3-ldap.MOD_ADD-exp_values2-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_DELETE-exp_values4-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef1-ldap.MOD_ADD-exp_values0-vucsn] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_ADD-exp_values1-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef3-ldap.MOD_ADD-exp_values2-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_DELETE-exp_values4-vdcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/syncrepl_plugin/basic_test.py::test_syncrepl_basic | 5.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie | 29.90 | |
------------------------------Captured stdout call------------------------------ syncrepl_poll: LDAP error (%s) {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []} | |||
Passed | suites/syncrepl_plugin/openldap_test.py::test_syncrepl_openldap | 5.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/syntax/acceptance_test.py::test_valid | 6.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:54 Clean the error log [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:58 Attempting to add task entry... [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:65 Found 0 invalid entries - Success | |||
Passed | suites/syntax/acceptance_test.py::test_invalid_uidnumber | 5.95 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:91 Clean the error log [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:98 Attempting to add task entry... [32mINFO [0m lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:105 Found an invalid entry with wrong uidNumber - Success | |||
Passed | suites/syntax/mr_test.py::test_sss_mr | 6.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:42 Creating LDIF... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:47 Importing LDIF... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:52 Search using server side sorting using undefined mr in the attr... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:62 Test PASSED | |||
Passed | suites/tls/cipher_test.py::test_long_cipher_list | 19.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/tls/ssl_version_test.py::test_ssl_version_range | 66.62 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.tls.ssl_version_test:ssl_version_test.py:36 default min: TLS1.2 max: TLS1.3 | |||
Passed | suites/tls/tls_cert_namespace_test.py::test_pem_cert_in_private_namespace | 13.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:54 Enable TLS [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:57 Checking PrivateTmp value [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:59 Command used : systemctl show -p PrivateTmp dirsrv@standalone1.service [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:63 Check files in private /tmp [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Self-Signed-CA.pem is present in private /tmp [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Server-Cert-Key.pem is present in private /tmp [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Server-Cert.pem is present in private /tmp [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:71 Check instance cert directory [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Self-Signed-CA.pem is not present in /etc/dirsrv/slapd-standalone1/ directory [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Server-Cert-Key.pem is not present in /etc/dirsrv/slapd-standalone1/ directory [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Server-Cert.pem is not present in /etc/dirsrv/slapd-standalone1/ directory | |||
Passed | suites/tls/tls_cert_namespace_test.py::test_cert_category_authority | 11.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:106 Enable TLS [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:109 Get certificate path [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:115 Check that Self-Signed-CA.pem is present [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:119 Trust the certificate [32mINFO [0m tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:122 Search if our certificate has category: authority | |||
Passed | suites/tls/tls_check_crl_test.py::test_tls_check_crl | 13.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/tls/tls_ldaps_only_test.py::test_tls_ldaps_only | 25.27 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/vlv/regression_test.py::test_bulk_import_when_the_backend_with_vlv_was_recreated | 18.32 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e0cdd449-ebf4-444a-b312-c099cb25a14e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d47c47bf-0e60-499e-bec3-c268d64e4b40 / got description=e0cdd449-ebf4-444a-b312-c099cb25a14e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stdout call------------------------------ deleting vlv search: cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config deleting vlv search entry... -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=example,dc=com",cn=mapping tree,cn=config cn: dc=example,dc=com nsslapd-backend: userRoot nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config cn: dc=example,dc=com nsslapd-backend: userRoot nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=example,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=userRoot,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=userRoot,cn=ldbm database,cn=plugins,cn=config cn: userRoot nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/userRoot nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=example,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1bbe4016-d24b-438f-928d-b25b66e0cb24 / got description=d47c47bf-0e60-499e-bec3-c268d64e4b40) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1bbe4016-d24b-438f-928d-b25b66e0cb24 / got description=d47c47bf-0e60-499e-bec3-c268d64e4b40) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1bbe4016-d24b-438f-928d-b25b66e0cb24 / got description=d47c47bf-0e60-499e-bec3-c268d64e4b40) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 18a3e2aa-e2b4-426e-91c1-955de4bad211 / got description=1bbe4016-d24b-438f-928d-b25b66e0cb24) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6e912c81-1329-4c3d-97e0-3c729e48a777 / got description=18a3e2aa-e2b4-426e-91c1-955de4bad211) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 37747fd9-6b18-43ac-8b9f-694a28e5d5fc / got description=6e912c81-1329-4c3d-97e0-3c729e48a777) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | tickets/ticket47560_test.py::test_ticket47560 | 17.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:874 fixupMemberOf task fixupmemberof_09292020_222723 for basedn dc=example,dc=com completed successfully | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_init | 0.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 4fbcfce9-cfc9-4f6f-8b44-af11156bcb3d / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:123 test_ticket47573_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e72ed700> (master <lib389.DirSrv object at 0x7f21f458f7c0>, consumer <lib389.DirSrv object at 0x7f21e72ed550> | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_one | 1.21 | |
-------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:147 test_ticket47573_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e72ed700> (master <lib389.DirSrv object at 0x7f21f458f7c0>, consumer <lib389.DirSrv object at 0x7f21e72ed550> [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:161 test_ticket47573_one master_schema_csn=b'5f73ed28000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:162 ctest_ticket47573_one onsumer_schema_csn=b'5f73ed28000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:47 _pattern_errorlog: start at offset 0 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [38] 389-Directory/1.4.4.4 B2020.273.2316 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [123] ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 (/etc/dirsrv/slapd-master1) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [124] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [241] [29/Sep/2020:22:27:36.808650088 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [355] [29/Sep/2020:22:27:36.819505200 -0400] - INFO - bdb_config_upgrade_dse_info - create config entry from old config [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [532] [29/Sep/2020:22:27:36.835924659 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [677] [29/Sep/2020:22:27:36.843515979 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7486144512, process usage 23175168 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [795] [29/Sep/2020:22:27:36.849073203 -0400] - INFO - check_and_set_import_cache - Import allocates 2924275KB import cache. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [902] [29/Sep/2020:22:27:37.013228896 -0400] - INFO - bdb_import_main - import userRoot: Beginning import job... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1030] [29/Sep/2020:22:27:37.016532847 -0400] - INFO - bdb_import_main - import userRoot: Index buffering enabled with bucket size 100 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1152] [29/Sep/2020:22:27:37.217540186 -0400] - INFO - import_producer - import userRoot: Processing file "/tmp/ldif6GmYy0.ldif" [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1293] [29/Sep/2020:22:27:37.221576308 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldif6GmYy0.ldif" (9 entries) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1416] [29/Sep/2020:22:27:37.721588976 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1526] [29/Sep/2020:22:27:37.925673801 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1640] [29/Sep/2020:22:27:37.928628393 -0400] - INFO - bdb_import_main - import userRoot: Cleaning up producer thread... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1762] [29/Sep/2020:22:27:37.931338013 -0400] - INFO - bdb_import_main - import userRoot: Indexing complete. Post-processing... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1919] [29/Sep/2020:22:27:37.934582118 -0400] - INFO - bdb_import_main - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2039] [29/Sep/2020:22:27:37.941286826 -0400] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2163] [29/Sep/2020:22:27:37.944012027 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2294] [29/Sep/2020:22:27:37.946903748 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2426] [29/Sep/2020:22:27:37.952454861 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Starting sort of ancestorid non-leaf IDs... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2556] [29/Sep/2020:22:27:37.956327753 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished sort of ancestorid non-leaf IDs. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2698] [29/Sep/2020:22:27:37.962893255 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2837] [29/Sep/2020:22:27:37.974169921 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2939] [29/Sep/2020:22:27:37.977454796 -0400] - INFO - bdb_import_main - import userRoot: Flushing caches... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3039] [29/Sep/2020:22:27:37.980575865 -0400] - INFO - bdb_import_main - import userRoot: Closing files... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3193] [29/Sep/2020:22:27:38.073202074 -0400] - INFO - bdb_import_main - import userRoot: Import complete. Processed 9 entries in 1 seconds. (9.00 entries/sec) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3290] [29/Sep/2020:22:27:38.076583104 -0400] - INFO - bdb_pre_close - All database threads now stopped [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3394] [29/Sep/2020:22:27:38.290936698 -0400] - INFO - main - 389-Directory/1.4.4.4 B2020.273.2316 starting up [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3502] [29/Sep/2020:22:27:38.296429132 -0400] - INFO - main - Setting the maximum file descriptor limit to: 524288 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3610] [29/Sep/2020:22:27:39.241334548 -0400] - INFO - PBKDF2_SHA256 - Based on CPU performance, chose 2048 rounds [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3727] [29/Sep/2020:22:27:39.250497800 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3829] [29/Sep/2020:22:27:39.258161967 -0400] - NOTICE - bdb_start_autotune - found 7980860k physical memory [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3925] [29/Sep/2020:22:27:39.261689290 -0400] - NOTICE - bdb_start_autotune - found 7308144k available [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4032] [29/Sep/2020:22:27:39.264883631 -0400] - NOTICE - bdb_start_autotune - cache autosizing: db cache: 498803k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4162] [29/Sep/2020:22:27:39.268694842 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot entry cache (1 total): 1376256k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4288] [29/Sep/2020:22:27:39.272717263 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot dn cache (1 total): 196608k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4392] [29/Sep/2020:22:27:39.276638042 -0400] - NOTICE - bdb_start_autotune - total cache size: 1834683392 B; [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4500] [29/Sep/2020:22:27:39.281583565 -0400] - INFO - bdb_start - Resizing db cache size: 2994457804 -> 408620032 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4636] [29/Sep/2020:22:27:39.539624587 -0400] - INFO - slapd_daemon - slapd started. Listening on All Interfaces port 39001 for LDAP requests [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4824] [29/Sep/2020:22:27:44.489795144 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5004] [29/Sep/2020:22:27:44.495466818 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5192] [29/Sep/2020:22:27:44.498914195 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5372] [29/Sep/2020:22:27:44.502613740 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5543] [29/Sep/2020:22:27:45.269938012 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-139-159:39201)". [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5727] [29/Sep/2020:22:27:45.273891408 -0400] - NOTICE - NSMMReplicationPlugin - replica_subentry_check - Need to create replication keep alive entry <cn=repl keep alive 1,dc=example,dc=com> [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5872] [29/Sep/2020:22:27:45.276905881 -0400] - INFO - NSMMReplicationPlugin - replica_subentry_create - add dn: cn=repl keep alive 1,dc=example,dc=com [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5889] objectclass: top [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5915] objectclass: ldapsubentry [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5945] objectclass: extensibleObject [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5967] cn: repl keep alive 1 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6154] [29/Sep/2020:22:27:47.918994752 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-139-159:39201)". Sent 12 entries. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6154] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 6154 | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_two | 1.25 | |
-------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:113 trigger_schema_push: receive b'1' (expected 2) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:192 test_ticket47573_two master_schema_csn=b'5f73ed2a000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:193 test_ticket47573_two consumer_schema_csn=b'5f73ed2a000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:47 _pattern_errorlog: start at offset 6155 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6155] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 6155 | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_three | 1.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47573_test:ticket47573_test.py:228 Testcase PASSED | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_init | 6.97 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 097ddcfc-3e43-4b18-a708-030363c83f46 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47619_test.py:48 test_ticket47619_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e749e3d0> [32mINFO [0m lib389:ticket47619_test.py:61 test_ticket47619_init: 100 entries ADDed other_entry[0..99] | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_create_index | 3.53 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog [32mINFO [0m lib389:backend.py:80 List backend with suffix=cn=changelog | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_reindex | 16.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222827 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222829 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222831 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222833 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222835 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222837 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222839 completed successfully [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_222841 completed successfully | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_check_indexed_search | 0.13 | |
No log output captured. | |||
Passed | tickets/ticket47640_test.py::test_ticket47640 | 0.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47640_test:ticket47640_test.py:65 Add operation correctly rejected. [32mINFO [0m tests.tickets.ticket47640_test:ticket47640_test.py:75 Test complete | |||
Passed | tickets/ticket47653MMR_test.py::test_ticket47653_init | 0.22 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 17f9e449-94f2-45ff-97c4-b208f45eca1c / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 54e14711-4011-4eba-95f6-20a9acdffe49 / got description=17f9e449-94f2-45ff-97c4-b208f45eca1c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47653MMR_test.py:72 Add OCticket47653 that allows 'member' attribute [32mINFO [0m lib389:ticket47653MMR_test.py:77 Add cn=bind_entry, dc=example,dc=com | |||
Passed | tickets/ticket47653MMR_test.py::test_ticket47653_add | 5.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47653MMR_test.py:114 ######################### ADD ###################### [32mINFO [0m lib389:ticket47653MMR_test.py:117 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:147 Try to add Add cn=test_entry, dc=example,dc=com (aci is missing): dn: cn=test_entry, dc=example,dc=com cn: test_entry member: cn=bind_entry, dc=example,dc=com objectclass: top objectclass: person objectclass: OCticket47653 postalAddress: here postalCode: 1234 sn: test_entry [32mINFO [0m lib389:ticket47653MMR_test.py:151 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:ticket47653MMR_test.py:155 Bind as cn=Directory Manager and add the ADD SELFDN aci [32mINFO [0m lib389:ticket47653MMR_test.py:168 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:173 Try to add Add cn=test_entry, dc=example,dc=com (member is missing) [32mINFO [0m lib389:ticket47653MMR_test.py:181 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:ticket47653MMR_test.py:188 Try to add Add cn=test_entry, dc=example,dc=com (with several member values) [32mINFO [0m lib389:ticket47653MMR_test.py:191 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:ticket47653MMR_test.py:195 Try to add Add cn=test_entry, dc=example,dc=com should be successful [32mINFO [0m lib389:ticket47653MMR_test.py:206 Try to retrieve cn=test_entry, dc=example,dc=com from Master2 [32mINFO [0m lib389:ticket47653MMR_test.py:218 Update cn=test_entry, dc=example,dc=com on M2 | |||
Passed | tickets/ticket47653MMR_test.py::test_ticket47653_modify | 4.36 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47653MMR_test.py:248 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:251 ######################### MODIFY ###################### [32mINFO [0m lib389:ticket47653MMR_test.py:255 Try to modify cn=test_entry, dc=example,dc=com (aci is missing) [32mINFO [0m lib389:ticket47653MMR_test.py:259 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:ticket47653MMR_test.py:263 Bind as cn=Directory Manager and add the WRITE SELFDN aci [32mINFO [0m lib389:ticket47653MMR_test.py:277 M1: Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:282 M1: Try to modify cn=test_entry, dc=example,dc=com. It should succeeds [32mINFO [0m lib389:ticket47653MMR_test.py:286 M1: Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47653MMR_test.py:289 M1: Check the update of cn=test_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:295 M2: Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47653MMR_test.py:297 M2: Try to retrieve cn=test_entry, dc=example,dc=com [32mINFO [0m lib389:ticket47653MMR_test.py:311 M2: Update cn=test_entry, dc=example,dc=com (bound as cn=bind_entry, dc=example,dc=com) [32mINFO [0m lib389:ticket47653MMR_test.py:329 M1: Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47653MMR_test.py:331 M1: Check cn=test_entry, dc=example,dc=com.postalCode=1929) | |||
Passed | tickets/ticket47676_test.py::test_ticket47676_init | 1.60 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 20b06269-2ace-4502-96bd-6be2d65a48a1 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 17a1f158-0e12-4c57-bc4d-60080c81007e / got description=20b06269-2ace-4502-96bd-6be2d65a48a1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47676_test.py:88 Add OCticket47676 that allows 'member' attribute [32mINFO [0m lib389:ticket47676_test.py:93 Add cn=bind_entry, dc=example,dc=com | |||
Passed | tickets/ticket47676_test.py::test_ticket47676_skip_oc_at | 2.87 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47676_test.py:120 ######################### ADD ###################### [32mINFO [0m lib389:ticket47676_test.py:123 Bind as cn=Directory Manager and add the add the entry with specific oc [32mINFO [0m lib389:ticket47676_test.py:140 Try to add Add cn=test_entry, dc=example,dc=com should be successful [32mINFO [0m lib389:ticket47676_test.py:147 Try to retrieve cn=test_entry, dc=example,dc=com from Master2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f529172b-7690-4950-bcf0-c33495e98f1b / got description=17a1f158-0e12-4c57-bc4d-60080c81007e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:ticket47676_test.py:152 Update cn=test_entry, dc=example,dc=com on M2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 78726e50-6edd-4d1e-94d0-54460f8dee6b / got description=f529172b-7690-4950-bcf0-c33495e98f1b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47676_test.py::test_ticket47676_reject_action | 10.89 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47676_test.py:163 ######################### REJECT ACTION ###################### [32mINFO [0m lib389:ticket47676_test.py:177 Add OC2ticket47676 on M1 [32mINFO [0m lib389:ticket47676_test.py:182 Check OC2ticket47676 is in M1 [32mINFO [0m lib389:ticket47676_test.py:193 Update cn=test_entry, dc=example,dc=com on M1 [32mINFO [0m lib389:ticket47676_test.py:198 Check updated cn=test_entry, dc=example,dc=com on M2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6a44aa4f-29a4-4d0b-a4b7-fca9d193317a / got description=78726e50-6edd-4d1e-94d0-54460f8dee6b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:ticket47676_test.py:205 Check OC2ticket47676 is not in M2 [32mINFO [0m lib389:ticket47676_test.py:215 ######################### NO MORE REJECT ACTION ###################### [32mINFO [0m lib389:ticket47676_test.py:226 Update cn=test_entry, dc=example,dc=com on M1 [32mINFO [0m lib389:ticket47676_test.py:231 Check updated cn=test_entry, dc=example,dc=com on M2 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0253615d-32f8-4f0e-a01e-920852151d70 / got description=6a44aa4f-29a4-4d0b-a4b7-fca9d193317a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:ticket47676_test.py:237 Check OC2ticket47676 is in M2 | |||
Passed | tickets/ticket47714_test.py::test_ticket47714_init | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47714_test.py:38 ############################################### [32mINFO [0m lib389:ticket47714_test.py:39 ####### [32mINFO [0m lib389:ticket47714_test.py:40 ####### Testing Ticket 47714 - [RFE] Update lastLoginTime also in Account Policy plugin if account lockout is based on passwordExpirationTime. [32mINFO [0m lib389:ticket47714_test.py:41 ####### [32mINFO [0m lib389:ticket47714_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket47714_test.py:55 ######################### Adding Account Policy entry: cn=Account Inactivation Policy,dc=example,dc=com ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:60 ######################### Adding Test User entry: uid=ticket47714user,dc=example,dc=com ###################### | |||
Passed | tickets/ticket47714_test.py::test_ticket47714_run_0 | 10.79 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47714_test.py:38 ############################################### [32mINFO [0m lib389:ticket47714_test.py:39 ####### [32mINFO [0m lib389:ticket47714_test.py:40 ####### Account Policy - No new attr alwaysRecordLoginAttr in config [32mINFO [0m lib389:ticket47714_test.py:41 ####### [32mINFO [0m lib389:ticket47714_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket47714_test.py:96 ######################### Bind as uid=ticket47714user,dc=example,dc=com ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:109 ######################### Bind as uid=ticket47714user,dc=example,dc=com again ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:122 First lastLoginTime: b'20200930023009Z', Second lastLoginTime: b'20200930023011Z' [32mINFO [0m lib389.utils:ticket47714_test.py:133 ######################### cn=config,cn=Account Policy Plugin,cn=plugins,cn=config ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:134 accountInactivityLimit: b'1' [32mINFO [0m lib389.utils:ticket47714_test.py:135 ######################### cn=config,cn=Account Policy Plugin,cn=plugins,cn=config DONE ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:137 ######################### Bind as uid=ticket47714user,dc=example,dc=com again to fail ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:141 CONSTRAINT VIOLATION Constraint violation [32mINFO [0m lib389.utils:ticket47714_test.py:142 uid=ticket47714user,dc=example,dc=com was successfully inactivated. | |||
Passed | tickets/ticket47714_test.py::test_ticket47714_run_1 | 5.90 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47714_test.py:38 ############################################### [32mINFO [0m lib389:ticket47714_test.py:39 ####### [32mINFO [0m lib389:ticket47714_test.py:40 ####### Account Policy - With new attr alwaysRecordLoginAttr in config [32mINFO [0m lib389:ticket47714_test.py:41 ####### [32mINFO [0m lib389:ticket47714_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket47714_test.py:179 ######################### Bind as uid=ticket47714user,dc=example,dc=com ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:191 ######################### Bind as uid=ticket47714user,dc=example,dc=com again ###################### [32mINFO [0m lib389.utils:ticket47714_test.py:203 First lastLoginTime: b'20200930023019Z', Second lastLoginTime: b'20200930023020Z' [32mINFO [0m lib389:ticket47714_test.py:206 ticket47714 was successfully verified. | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_init | 0.90 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 31197137-5220-4e78-8ee6-3125c44c70ec / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 6ed66ab8-cb3e-4a5c-9abb-558c96f7c888 / got description=31197137-5220-4e78-8ee6-3125c44c70ec) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47721_test.py:98 Add cn=bind_entry, dc=example,dc=com | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_0 | 1.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2ebc229a-90ad-4c2b-8c73-497fbac0e955 / got description=6ed66ab8-cb3e-4a5c-9abb-558c96f7c888) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_1 | 3.56 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:127 Running test 1... [32mINFO [0m lib389:ticket47721_test.py:132 Add (M2) b"( ATticket47721-oid NAME 'ATticket47721' DESC 'test AT ticket 47721' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN ( 'Test 47721' 'user defined' ) )" [32mINFO [0m lib389:ticket47721_test.py:136 Chg (M2) b"( 2.16.840.1.113730.3.1.569 NAME 'cosPriority' DESC 'Netscape defined attribute type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 X-ORIGIN 'Netscape Directory Server' )" [32mINFO [0m lib389:ticket47721_test.py:140 Add (M2) b"( OCticket47721-oid NAME 'OCticket47721' DESC 'An group of related automount objects' SUP top STRUCTURAL MUST ou X-ORIGIN 'draft-howard-rfc2307bis' )" [32mINFO [0m lib389:ticket47721_test.py:144 Chg (M2) b"( 5.3.6.1.1.1.2.0 NAME 'trustAccount' DESC 'Sets trust accounts information' SUP top AUXILIARY MUST trustModel MAY ( accessTo $ ou ) X-ORIGIN 'nss_ldap/pam_ldap' )" [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 921feb3c-0bfc-48b7-82d8-630f45437247 / got description=2ebc229a-90ad-4c2b-8c73-497fbac0e955) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:158 Master 1 schemaCSN: b'5f73edd5000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:159 Master 2 schemaCSN: b'5f73edd5000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_2 | 3.23 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:163 Running test 2... [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 89fc0556-622c-4400-bd13-e929c1203eed / got description=921feb3c-0bfc-48b7-82d8-630f45437247) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:176 Master 1 schemaCSN: b'5f73edd5000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:177 Master 2 schemaCSN: b'5f73edd5000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_3 | 13.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:195 Running test 3... [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:ticket47721_test.py:203 Update schema (M2) b"( ATtest3-oid NAME 'ATtest3' DESC 'test AT ticket 47721' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN ( 'Test 47721' 'user defined' ) )" [32mINFO [0m lib389:ticket47721_test.py:208 Update schema (M2) b"( OCtest3-oid NAME 'OCtest3' DESC 'An group of related automount objects' SUP top STRUCTURAL MUST ou X-ORIGIN 'draft-howard-rfc2307bis' )" [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e95f2a8a-022c-4f0b-9b4c-45045497f20a / got description=89fc0556-622c-4400-bd13-e929c1203eed) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:223 Master 1 schemaCSN: b'5f73edd5000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:224 Master 2 schemaCSN: b'5f73ede2000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_4 | 5.75 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:245 Running test 4... [32mINFO [0m lib389:ticket47721_test.py:248 Update schema (M1) b"( ATtest4-oid NAME 'ATtest4' DESC 'test AT ticket 47721' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 X-ORIGIN ( 'Test 47721' 'user defined' ) )" [32mINFO [0m lib389:ticket47721_test.py:252 Update schema (M1) b"( OCtest4-oid NAME 'OCtest4' DESC 'An group of related automount objects' SUP top STRUCTURAL MUST ou X-ORIGIN 'draft-howard-rfc2307bis' )" [32mINFO [0m lib389:ticket47721_test.py:255 trigger replication M1->M2: to update the schema [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6f2bd686-8f27-432a-afbc-27aa246fedc4 / got description=e95f2a8a-022c-4f0b-9b4c-45045497f20a) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6f2bd686-8f27-432a-afbc-27aa246fedc4 / got description=e95f2a8a-022c-4f0b-9b4c-45045497f20a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:ticket47721_test.py:264 trigger replication M1->M2: to push the schema [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2ed3eab5-fc07-48bb-acd7-89ddcefbd4ca / got description=6f2bd686-8f27-432a-afbc-27aa246fedc4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:276 Master 1 schemaCSN: b'5f73edea000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:277 Master 2 schemaCSN: b'5f73edea000000000000' | |||
Passed | tickets/ticket47787_test.py::test_ticket47787_init | 2.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 619b577b-4d44-4823-85e6-35bd4be4570a / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c513e59c-13f9-4c1c-88fb-414067c55174 / got description=619b577b-4d44-4823-85e6-35bd4be4570a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47787_test.py:294 ######################### INITIALIZATION ###################### [32mINFO [0m lib389:ticket47787_test.py:297 Add cn=bind_entry,dc=example,dc=com [32mINFO [0m lib389:ticket47787_test.py:305 Add cn=staged user,dc=example,dc=com [32mINFO [0m lib389:ticket47787_test.py:312 Add cn=accounts,dc=example,dc=com | |||
Passed | tickets/ticket47787_test.py::test_ticket47787_2 | 16.84 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47787_test.py:69 ############################################### [32mINFO [0m lib389:ticket47787_test.py:70 ####### [32mINFO [0m lib389:ticket47787_test.py:71 ####### test_ticket47787_2 [32mINFO [0m lib389:ticket47787_test.py:72 ####### [32mINFO [0m lib389:ticket47787_test.py:73 ############################################### [32mINFO [0m lib389:ticket47787_test.py:59 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47787_test.py:59 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47787_test.py:159 ######################### Pause RA M1<->M2 ###################### [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:ticket47787_test.py:209 ######################### MOD cn=new_account18,cn=staged user,dc=example,dc=com (M2) ###################### [32mINFO [0m lib389:ticket47787_test.py:200 ######################### DELETE new_account1 (M1) ###################### [32mINFO [0m lib389:ticket47787_test.py:209 ######################### MOD cn=new_account18,cn=staged user,dc=example,dc=com (M2) ###################### [32mINFO [0m lib389:ticket47787_test.py:209 ######################### MOD cn=new_account19,cn=staged user,dc=example,dc=com (M2) ###################### [32mINFO [0m lib389:ticket47787_test.py:209 ######################### MOD cn=new_account1,cn=staged user,dc=example,dc=com (M2) ###################### [32mINFO [0m lib389:ticket47787_test.py:209 ######################### MOD cn=new_account19,cn=staged user,dc=example,dc=com (M2) ###################### [32mINFO [0m lib389:ticket47787_test.py:170 ######################### resume RA M1<->M2 ###################### [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:ticket47787_test.py:388 ######################### Check DEL replicated on M2 ###################### [32mINFO [0m lib389:ticket47787_test.py:79 ######################### Tombstone on M1 ###################### [32mINFO [0m lib389:ticket47787_test.py:92 ######################### Tombstone on M2 ###################### [32mINFO [0m lib389:ticket47787_test.py:96 ######################### Description ###################### DEL M1 - MOD M2 [32mINFO [0m lib389:ticket47787_test.py:97 M1 only [32mINFO [0m lib389:ticket47787_test.py:108 M2 only [32mINFO [0m lib389:ticket47787_test.py:119 M1 differs M2 [32mINFO [0m lib389:ticket47787_test.py:409 ######################### Check MOD replicated on M1 ###################### | |||
Passed | tickets/ticket47808_test.py::test_ticket47808_run | 3.84 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47808_test.py:36 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket47808_test.py:39 ######################### SETUP ATTR UNIQ PLUGIN ###################### [32mINFO [0m lib389:ticket47808_test.py:46 ######################### ADD USER 1 ###################### [32mINFO [0m lib389:ticket47808_test.py:55 Try to add Add dn: cn=test_entry 1, dc=example,dc=com cn: test_entry 1 objectclass: top objectclass: person sn: test_entry : dn: cn=test_entry 1, dc=example,dc=com cn: test_entry 1 objectclass: top objectclass: person sn: test_entry [32mINFO [0m lib389:ticket47808_test.py:58 ######################### Restart Server ###################### [32mINFO [0m lib389:ticket47808_test.py:62 ######################### ADD USER 2 ###################### [32mINFO [0m lib389:ticket47808_test.py:71 Try to add Add dn: cn=test_entry 2, dc=example,dc=com cn: test_entry 2 objectclass: top objectclass: person sn: test_entry : dn: cn=test_entry 2, dc=example,dc=com cn: test_entry 2 objectclass: top objectclass: person sn: test_entry [33mWARNING [0m lib389:ticket47808_test.py:75 Adding cn=test_entry 2, dc=example,dc=com failed [32mINFO [0m lib389:ticket47808_test.py:78 ######################### IS SERVER UP? ###################### [32mINFO [0m lib389:ticket47808_test.py:81 Yes, it's up. [32mINFO [0m lib389:ticket47808_test.py:83 ######################### CHECK USER 2 NOT ADDED ###################### [32mINFO [0m lib389:ticket47808_test.py:84 Try to search cn=test_entry 2, dc=example,dc=com [32mINFO [0m lib389:ticket47808_test.py:88 Found none [32mINFO [0m lib389:ticket47808_test.py:90 ######################### DELETE USER 1 ###################### [32mINFO [0m lib389:ticket47808_test.py:92 Try to delete cn=test_entry 1, dc=example,dc=com | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_init | 12.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_one_container_add | 18.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (ADD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:140 Uniqueness not enforced: create the entries [32mINFO [0m lib389:ticket47823_test.py:155 Uniqueness enforced: checks second entry is rejected [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:140 Uniqueness not enforced: create the entries [32mINFO [0m lib389:ticket47823_test.py:155 Uniqueness enforced: checks second entry is rejected | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_one_container_mod | 9.76 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MOD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:193 Uniqueness enforced: checks MOD ADD entry is rejected [32mINFO [0m lib389:ticket47823_test.py:210 Uniqueness enforced: checks MOD REPLACE entry is rejected [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:193 Uniqueness enforced: checks MOD ADD entry is rejected [32mINFO [0m lib389:ticket47823_test.py:210 Uniqueness enforced: checks MOD REPLACE entry is rejected | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_one_container_modrdn | 9.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:237 Uniqueness enforced: checks MODRDN entry is rejected [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:237 Uniqueness enforced: checks MODRDN entry is rejected | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_multi_containers_add | 9.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (ADD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_multi_containers_mod | 9.38 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MOD) on separated container [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:525 Uniqueness not enforced: if same 'cn' modified (add/replace) on separated containers [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) on separated container [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:531 Uniqueness not enforced: if same 'cn' modified (add/replace) on separated containers | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_multi_containers_modrdn | 9.40 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) on separated containers [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### [32mINFO [0m lib389:ticket47823_test.py:545 Uniqueness not enforced: checks MODRDN entry is accepted on separated containers [32mINFO [0m lib389:ticket47823_test.py:548 Uniqueness not enforced: checks MODRDN entry is accepted on separated containers | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_across_multi_containers_add | 4.33 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) across several containers [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_across_multi_containers_mod | 4.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) across several containers [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_across_multi_containers_modrdn | 4.82 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MODRDN) across several containers [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_1 | 9.94 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (old): arg0 is missing [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_2 | 9.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (old): arg1 is missing [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_3 | 10.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (old): arg0 is missing but new config attrname exists [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_4 | 9.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (old): arg1 is missing but new config exist [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_5 | 9.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-attribute-name is missing [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_6 | 9.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-subtrees is missing [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_invalid_config_7 | 10.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47823_test.py:58 ############################################### [32mINFO [0m lib389:ticket47823_test.py:59 ####### [32mINFO [0m lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-subtrees are invalid [32mINFO [0m lib389:ticket47823_test.py:61 ####### [32mINFO [0m lib389:ticket47823_test.py:62 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_init | 4.55 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_0 | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### NO exclude scope: Add an active entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_1 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### NO exclude scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_2 | 0.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### NO exclude scope: Add a staged entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_3 | 0.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### NO exclude scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_4 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Exclude the provisioning container [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_5 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an active entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_6 | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_7 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_8 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_9 | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_10 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_11 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Exclude (in addition) the dummy container [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_12 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an active entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_13 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_14 | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_15 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_16 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an dummy entry and check its ALLOCATED_ATTR not is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_17 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_18 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Exclude PROVISIONING and a wrong container [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_19 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_20 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_21 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_22 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_23 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_24 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_25 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Exclude a wrong container [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_26 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_27 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_28 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_29 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_30 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47828_test.py::test_ticket47828_run_31 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47828_test.py:42 ############################################### [32mINFO [0m lib389:ticket47828_test.py:43 ####### [32mINFO [0m lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) [32mINFO [0m lib389:ticket47828_test.py:45 ####### [32mINFO [0m lib389:ticket47828_test.py:46 ############################################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_init | 4.51 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_1 | 2.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an active user to an active group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_2 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an Active user to a Stage group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_3 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an Active user to a out of scope group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=out group,cn=out,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_stage_user_1 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a Active group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_stage_user_2 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a Stage group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_stage_user_3 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a out of scope group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=out group,cn=out,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_out_user_1 | 2.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to an active group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=out guy,cn=out,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_out_user_2 | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to a Stage group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com: member ->b'cn=out guy,cn=out,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_out_user_3 | 2.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to an out of scope group [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=out group,cn=out,dc=example,dc=com: member ->b'cn=out guy,cn=out,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_modrdn_active_user_1 | 2.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to Active [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=xactive guy ###################### [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=xactive guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=xactive guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_modrdn_stage_user_1 | 1.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to Stage [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_active_user_modrdn_out_user_1 | 1.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to out of scope [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_modrdn_1 | 1.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Active [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=stage guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_stage_user_modrdn_active_user_1 | 1.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Active [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=stage guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_mod_stage_user_modrdn_stage_user_1 | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Stage [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### Return because it requires a fix for 47833 [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_1 | 2.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active group (G1) to an active group (G0). Then add active user to G1 [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_2 | 1.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active group (G1) to an active group (G0). Then add active user to G1. Then move active user to stage [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_3 | 1.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active group (G1) to an active group (G0). Then add active user to G1. Then move active user to out of the scope [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=active guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### | |||
Passed | tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_4 | 1.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47829_test.py:62 ############################################### [32mINFO [0m lib389:ticket47829_test.py:63 ####### [32mINFO [0m lib389:ticket47829_test.py:64 ####### add an Active group (G1) to an active group (G0). Then add stage user to G1. Then move user to active. Then move it back [32mINFO [0m lib389:ticket47829_test.py:65 ####### [32mINFO [0m lib389:ticket47829_test.py:66 ############################################### [32mINFO [0m lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=stage guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=stage guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:96 !!!!!!! cn=stage guy,cn=accounts,cn=in,dc=example,dc=com: memberof->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### [32mINFO [0m lib389:ticket47829_test.py:116 !!!!!!! cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com' | |||
Passed | tickets/ticket47833_test.py::test_ticket47829_init | 4.87 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47833_test.py::test_ticket47829_mod_stage_user_modrdn_stage_user_1 | 1.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47833_test.py:58 ############################################### [32mINFO [0m lib389:ticket47833_test.py:59 ####### [32mINFO [0m lib389:ticket47833_test.py:60 ####### add an Stage user to a Active group. Then move Stage user to Stage [32mINFO [0m lib389:ticket47833_test.py:61 ####### [32mINFO [0m lib389:ticket47833_test.py:62 ############################################### [32mINFO [0m lib389:ticket47833_test.py:145 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47833_test.py:146 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com [32mINFO [0m lib389:ticket47833_test.py:112 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' [32mINFO [0m lib389:ticket47833_test.py:128 ######################### MODRDN cn=xstage guy ###################### [32mINFO [0m lib389:ticket47833_test.py:112 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com' | |||
Passed | tickets/ticket47869MMR_test.py::test_ticket47869_init | 12.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5faabc72-b568-4053-aca5-728dfd15dc84 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 90748117-d042-42a8-8afe-a40fc2ff78a3 / got description=5faabc72-b568-4053-aca5-728dfd15dc84) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47869MMR_test.py:51 Add cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ac915951-cafc-49cb-afb7-7b8f1612fa45 / got description=90748117-d042-42a8-8afe-a40fc2ff78a3) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 58d761c9-7019-4cb4-9c7c-71b7cce793da / got description=ac915951-cafc-49cb-afb7-7b8f1612fa45) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 84ea9ca3-99be-47d7-880f-dbafabdb690c / got description=58d761c9-7019-4cb4-9c7c-71b7cce793da) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8a1cb12-c764-4806-b6cc-08382244a374 / got description=84ea9ca3-99be-47d7-880f-dbafabdb690c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8218b9cf-8e90-4df2-8a01-0ec5f5ca233a / got description=f8a1cb12-c764-4806-b6cc-08382244a374) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 350ad62b-8c8f-4849-9ce3-f17404ad802e / got description=8218b9cf-8e90-4df2-8a01-0ec5f5ca233a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4f9a947b-50d1-4711-b763-676cbf25f63d / got description=350ad62b-8c8f-4849-9ce3-f17404ad802e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 490c8138-0135-4fa7-9f3b-6a2ff7b5056f / got description=4f9a947b-50d1-4711-b763-676cbf25f63d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 97d825de-a877-4223-9a10-f008a27124c7 / got description=490c8138-0135-4fa7-9f3b-6a2ff7b5056f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 123a302b-5db3-40f7-ae24-0c83c9ca14ef / got description=97d825de-a877-4223-9a10-f008a27124c7) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f742e1d9-7c20-47f1-aabc-f048f1f8beef / got description=123a302b-5db3-40f7-ae24-0c83c9ca14ef) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47869MMR_test.py::test_ticket47869_check | 0.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47869MMR_test.py:93 ######################### CHECK nscpentrywsi ###################### [32mINFO [0m lib389:ticket47869MMR_test.py:95 ##### Master1: Bind as cn=Directory Manager ##### [32mINFO [0m lib389:ticket47869MMR_test.py:98 Master1: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:102 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:104 Results: [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=Directory Administrators,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: ou=People,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: ou=Special Users,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=HR Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=QA Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=PD Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=replication_managers,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=bind_entry,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry0,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry1,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry2,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry3,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry4,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry5,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry6,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry7,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry8,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:106 dn: cn=test_entry9,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:110 Master1: count of nscpentrywsi: 24 [32mINFO [0m lib389:ticket47869MMR_test.py:112 ##### Master2: Bind as cn=Directory Manager ##### [32mINFO [0m lib389:ticket47869MMR_test.py:115 Master2: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:119 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:121 Results: [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=Directory Administrators,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: ou=People,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: ou=Special Users,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=replication_managers,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=HR Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=QA Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=PD Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=bind_entry,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry0,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry1,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry2,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry3,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry4,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry5,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry6,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry7,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry8,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:123 dn: cn=test_entry9,dc=example,dc=com [32mINFO [0m lib389:ticket47869MMR_test.py:127 Master2: count of nscpentrywsi: 24 [32mINFO [0m lib389:ticket47869MMR_test.py:130 ##### Master1: Bind as cn=bind_entry, dc=example,dc=com ##### [32mINFO [0m lib389:ticket47869MMR_test.py:133 Master1: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:137 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:143 Master1: count of nscpentrywsi: 0 [32mINFO [0m lib389:ticket47869MMR_test.py:146 ##### Master2: Bind as cn=bind_entry, dc=example,dc=com ##### [32mINFO [0m lib389:ticket47869MMR_test.py:149 Master2: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:153 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:159 Master2: count of nscpentrywsi: 0 [32mINFO [0m lib389:ticket47869MMR_test.py:162 ##### Master1: Bind as anonymous ##### [32mINFO [0m lib389:ticket47869MMR_test.py:165 Master1: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:169 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:175 Master1: count of nscpentrywsi: 0 [32mINFO [0m lib389:ticket47869MMR_test.py:178 ##### Master2: Bind as anonymous ##### [32mINFO [0m lib389:ticket47869MMR_test.py:181 Master2: Calling search_ext... [32mINFO [0m lib389:ticket47869MMR_test.py:185 24 results [32mINFO [0m lib389:ticket47869MMR_test.py:191 Master2: count of nscpentrywsi: 0 [32mINFO [0m lib389:ticket47869MMR_test.py:193 ##### ticket47869 was successfully verified. ##### | |||
Passed | tickets/ticket47871_test.py::test_ticket47871_init | 4.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f720dba2-03ca-4559-9ec5-946b85249cb6 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47871_test.py:53 test_ticket47871_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f21e6588490> | |||
Passed | tickets/ticket47871_test.py::test_ticket47871_1 | 1.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47871_test.py:71 test_ticket47871_init: 10 entries ADDed other_entry[0..9] [32mINFO [0m lib389:ticket47871_test.py:78 Added entries are [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=1,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=2,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=3,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=4,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=5,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=6,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=7,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=8,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=9,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:80 changenumber=10,cn=changelog | |||
Passed | tickets/ticket47871_test.py::test_ticket47871_2 | 18.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47871_test.py:93 Try no 1 it remains 10 entries [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=1,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=2,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=3,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=4,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=5,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=6,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=7,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=8,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=9,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=10,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:93 Try no 2 it remains 10 entries [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=1,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=2,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=3,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=4,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=5,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=6,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=7,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=8,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=9,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=10,cn=changelog [32mINFO [0m lib389:ticket47871_test.py:93 Try no 3 it remains 1 entries [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=10,cn=changelog | |||
Passed | tickets/ticket47900_test.py::test_ticket47900 | 0.96 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47900_test.py:52 Creating Password Administator entry cn=passwd_admin,dc=example,dc=com... [32mINFO [0m lib389:ticket47900_test.py:62 Configuring password policy... [32mINFO [0m lib389:ticket47900_test.py:74 Add aci to allow password admin to add/update entries... [32mINFO [0m lib389:ticket47900_test.py:87 Bind as the Password Administator (before activating)... [32mINFO [0m lib389:ticket47900_test.py:101 Attempt to add entries with invalid passwords, these adds should fail... [32mINFO [0m lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (2_Short)... [32mINFO [0m lib389:ticket47900_test.py:111 Add failed as expected: password (2_Short) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (No_Number)... [32mINFO [0m lib389:ticket47900_test.py:111 Add failed as expected: password (No_Number) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (N0Special)... [32mINFO [0m lib389:ticket47900_test.py:111 Add failed as expected: password (N0Special) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==)... [32mINFO [0m lib389:ticket47900_test.py:111 Add failed as expected: password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:123 Activate the Password Administator... [32mINFO [0m lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (2_Short)... [32mINFO [0m lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) [32mINFO [0m lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (No_Number)... [32mINFO [0m lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) [32mINFO [0m lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (N0Special)... [32mINFO [0m lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) [32mINFO [0m lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==)... [32mINFO [0m lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) [32mINFO [0m lib389:ticket47900_test.py:155 Deactivate Password Administator and try invalid password updates... [32mINFO [0m lib389:ticket47900_test.py:177 Password update failed as expected: password (2_Short) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:177 Password update failed as expected: password (No_Number) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:177 Password update failed as expected: password (N0Special) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:177 Password update failed as expected: password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:188 Activate Password Administator and try updates again... [32mINFO [0m lib389:ticket47900_test.py:205 Password update succeeded (2_Short) [32mINFO [0m lib389:ticket47900_test.py:205 Password update succeeded (No_Number) [32mINFO [0m lib389:ticket47900_test.py:205 Password update succeeded (N0Special) [32mINFO [0m lib389:ticket47900_test.py:205 Password update succeeded ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==) | |||
Passed | tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_positive | 0.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.utils:ticket47910_test.py:36 Diable access log buffering [32mINFO [0m lib389.utils:ticket47910_test.py:39 Do a ldapsearch operation [32mINFO [0m lib389.utils:ticket47910_test.py:42 sleep for sometime so that access log file get generated -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:ticket47910_test.py:79 Running test_ticket47910 - Execute logconv.pl -S -E with random values [32mINFO [0m lib389.utils:ticket47910_test.py:81 taking current time with offset of 2 mins and formatting it to feed -S [32mINFO [0m lib389.utils:ticket47910_test.py:85 taking current time with offset of 2 mins and formatting it to feed -E [32mINFO [0m lib389.utils:ticket47910_test.py:89 Executing logconv.pl with -S and -E [32mINFO [0m lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time [32mINFO [0m lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S [29/Sep/2020:22:35:53] -E [29/Sep/2020:22:39:53] /var/log/dirsrv/slapd-standalone1/access [32mINFO [0m lib389.utils:ticket47910_test.py:66 standard outputAccess Log Analyzer 8.2 Command: logconv.pl /var/log/dirsrv/slapd-standalone1/access Processing 1 Access Log(s)... [001] /var/log/dirsrv/slapd-standalone1/access size (bytes): 1136 Total Log Lines Analysed: 9 ----------- Access Log Output ------------ Start of Logs: 29/Sep/2020:22:35:53 End of Logs: 29/Sep/2020:22:37:52.105075428 Processed Log Time: 0 Hours, 1 Minutes, 59.105077248 Seconds Restarts: 1 Peak Concurrent Connections: 1 Total Operations: 4 Total Results: 4 Overall Performance: 100.0% Total Connections: 1 (0.01/sec) (0.50/min) - LDAP Connections: 1 (0.01/sec) (0.50/min) - LDAPI Connections: 0 (0.00/sec) (0.00/min) - LDAPS Connections: 0 (0.00/sec) (0.00/min) - StartTLS Extended Ops: 0 (0.00/sec) (0.00/min) Searches: 2 (0.02/sec) (1.01/min) Modifications: 1 (0.01/sec) (0.50/min) Adds: 0 (0.00/sec) (0.00/min) Deletes: 0 (0.00/sec) (0.00/min) Mod RDNs: 0 (0.00/sec) (0.00/min) Compares: 0 (0.00/sec) (0.00/min) Binds: 1 (0.01/sec) (0.50/min) Average wtime (wait time): 0.000271717 Average optime (op time): 0.029038090 Average etime (elapsed time): 0.029305019 Proxied Auth Operations: 0 Persistent Searches: 0 Internal Operations: 0 Entry Operations: 0 Extended Operations: 0 Abandoned Requests: 0 Smart Referrals Received: 0 VLV Operations: 0 VLV Unindexed Searches: 0 VLV Unindexed Components: 0 SORT Operations: 0 Entire Search Base Queries: 1 Paged Searches: 0 Unindexed Searches: 0 Unindexed Components: 1 Invalid Attribute Filters: 0 FDs Taken: 1 FDs Returned: 0 Highest FD Taken: 64 Broken Pipes: 0 Connections Reset By Peer: 0 Resource Unavailable: 0 Max BER Size Exceeded: 0 Binds: 1 Unbinds: 0 -------------------------------- - LDAP v2 Binds: 0 - LDAP v3 Binds: 1 - AUTOBINDs(LDAPI): 0 - SSL Client Binds: 0 - Failed SSL Client Binds: 0 - SASL Binds: 0 - Directory Manager Binds: 0 - Anonymous Binds: 0 Cleaning up temp files... Done. [32mINFO [0m lib389.utils:ticket47910_test.py:67 standard errors | |||
Passed | tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_negative | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:ticket47910_test.py:105 Running test_ticket47910 - Execute logconv.pl -S -E with starttime>endtime [32mINFO [0m lib389.utils:ticket47910_test.py:107 taking current time with offset of 2 mins and formatting it to feed -S [32mINFO [0m lib389.utils:ticket47910_test.py:111 taking current time with offset of 2 mins and formatting it to feed -E [32mINFO [0m lib389.utils:ticket47910_test.py:115 Executing logconv.pl with -S and -E [32mINFO [0m lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time [32mINFO [0m lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S [29/Sep/2020:22:39:53] -E [29/Sep/2020:22:35:53] /var/log/dirsrv/slapd-standalone1/access [32mINFO [0m lib389.utils:ticket47910_test.py:66 standard outputAccess Log Analyzer 8.2 Command: logconv.pl /var/log/dirsrv/slapd-standalone1/access Start time ([29/Sep/2020:22:39:53]) is greater than end time ([29/Sep/2020:22:35:53])! Cleaning up temp files... Done. [32mINFO [0m lib389.utils:ticket47910_test.py:67 standard errors | |||
Passed | tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_invalid | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:ticket47910_test.py:128 Running test_ticket47910 - Execute logconv.pl -S -E with invalid timestamp [32mINFO [0m lib389.utils:ticket47910_test.py:129 Set start time and end time to invalid values [32mINFO [0m lib389.utils:ticket47910_test.py:133 Executing logconv.pl with -S and -E [32mINFO [0m lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time [32mINFO [0m lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S invalid -E invalid /var/log/dirsrv/slapd-standalone1/access [32mINFO [0m lib389.utils:ticket47910_test.py:66 standard outputAccess Log Analyzer 8.2 Command: logconv.pl /var/log/dirsrv/slapd-standalone1/access The date string (invalid) is invalid, exiting... Cleaning up temp files... Done. [32mINFO [0m lib389.utils:ticket47910_test.py:67 standard errors | |||
Passed | tickets/ticket47910_test.py::test_ticket47910_logconv_noaccesslogs | 0.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.utils:ticket47910_test.py:147 Running test_ticket47910 - Execute logconv.pl without access logs [32mINFO [0m lib389.utils:ticket47910_test.py:149 taking current time with offset of 2 mins and formatting it to feed -S [32mINFO [0m lib389.utils:ticket47910_test.py:152 Executing logconv.pl with -S current time [32mINFO [0m lib389.utils:ticket47910_test.py:154 /usr/bin/logconv.pl -S [29/Sep/2020:22:35:54] [32mINFO [0m lib389.utils:ticket47910_test.py:157 standard outputThere are no access logs specified, or the tool options have not been used correctly! Cleaning up temp files... Done. [32mINFO [0m lib389.utils:ticket47910_test.py:158 standard errors | |||
Passed | tickets/ticket47920_test.py::test_ticket47920_init | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47920_test.py::test_ticket47920_mod_readentry_ctrl | 0.01 | |
------------------------------Captured stdout call------------------------------ ['final description'] -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47920_test.py:65 ############################################### [32mINFO [0m lib389:ticket47920_test.py:66 ####### [32mINFO [0m lib389:ticket47920_test.py:67 ####### MOD: with a readentry control [32mINFO [0m lib389:ticket47920_test.py:68 ####### [32mINFO [0m lib389:ticket47920_test.py:69 ############################################### [32mINFO [0m lib389:ticket47920_test.py:106 Check the initial value of the entry | |||
Passed | tickets/ticket47921_test.py::test_ticket47921 | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47921_test:ticket47921_test.py:81 Test complete | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_init | 4.60 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_one | 0.05 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:100 test_ticket47927_one: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:111 test_ticket47927_one: Failed (expected) to set the telephonenumber for cn=test_3,cn=excluded_container,dc=example,dc=com: Constraint violation | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_two | 4.37 | |
No log output captured. | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_three | 0.04 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:151 test_ticket47927_three: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:158 test_ticket47927_three: success to set the telephonenumber for cn=test_3,cn=excluded_container,dc=example,dc=com | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_four | 0.26 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:176 test_ticket47927_four: success to set the telephonenumber for cn=test_3,cn=excluded_container,dc=example,dc=com [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:198 test_ticket47927_four: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_five | 3.99 | |
No log output captured. | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_six | 0.18 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:240 test_ticket47927_six: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:247 test_ticket47927_six: success to set the telephonenumber for cn=test_3,cn=excluded_container,dc=example,dc=com [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:256 test_ticket47927_six: success to set the telephonenumber for cn=test_4,cn=excluded_bis_container,dc=example,dc=com | |||
Passed | tickets/ticket47931_test.py::test_ticket47931 | 46.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ Exception in thread Thread-69: Traceback (most recent call last): File "/usr/lib64/python3.8/threading.py", line 932, in _bootstrap_inner self.run() File "/export/tests/tickets/ticket47931_test.py", line 36, in run conn.set_option(ldap.OPT_TIMEOUT, self.timeout) File "/usr/local/lib/python3.8/site-packages/lib389/__init__.py", line 180, in inner return f(*args, **kwargs) File "/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py", line 937, in set_option return self._ldap_call(self._l.set_option,option,invalue) File "/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py", line 362, in __getattr__ raise AttributeError('%s has no attribute %s' % ( AttributeError: DirSrv has no attribute '_l' -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=deadlock [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=deadlock,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=deadlock,cn=ldbm database,cn=plugins,cn=config cn: deadlock nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/deadlock nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=deadlock objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=deadlock",cn=mapping tree,cn=config cn: dc=deadlock nsslapd-backend: deadlock nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Ddeadlock,cn=mapping tree,cn=config cn: dc=deadlock nsslapd-backend: deadlock nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m tests.tickets.ticket47931_test:ticket47931_test.py:142 Adding members to the group... [32mINFO [0m tests.tickets.ticket47931_test:ticket47931_test.py:158 Finished adding members to the group. [32mINFO [0m tests.tickets.ticket47931_test:ticket47931_test.py:164 Test complete | |||
Passed | tickets/ticket47953_test.py::test_ticket47953 | 4.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_223928 for file /var/lib/dirsrv/slapd-standalone1/ldif/ticket47953.ldif completed successfully | |||
Passed | tickets/ticket47963_test.py::test_ticket47963 | 7.92 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47963_test:ticket47963_test.py:145 Test complete | |||
Passed | tickets/ticket47970_test.py::test_ticket47970 | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47973_test.py::test_ticket47973 | 2.13 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_init | 4.50 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_1 | 3.58 | |
No log output captured. | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_2 | 4.52 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:99 Test complete [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:104 Export LDIF file... [32mINFO [0m lib389:tasks.py:564 Export task export_09292020_224020 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:115 Import LDIF file... [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_224022 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_3 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:131 Testing if the delete will hang or not [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:150 user0 was correctly deleted [32mINFO [0m tests.tickets.ticket47976_test:ticket47976_test.py:150 user1 was correctly deleted | |||
Passed | tickets/ticket47980_test.py::test_ticket47980 | 2.83 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket47981_test.py::test_ticket47981 | 4.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=o=netscaperoot [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=netscaperoot,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=netscaperoot,cn=ldbm database,cn=plugins,cn=config cn: netscaperoot nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/netscaperoot nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=netscaperoot objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="o=netscaperoot",cn=mapping tree,cn=config cn: o=netscaperoot nsslapd-backend: netscaperoot nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=o\3Dnetscaperoot,cn=mapping tree,cn=config cn: o=netscaperoot nsslapd-backend: netscaperoot nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree | |||
Passed | tickets/ticket48005_test.py::test_ticket48005_setup | 11.94 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ grep: /etc/sysconfig/dirsrv: No such file or directory grep: /etc/sysconfig/dirsrv.systemd: No such file or directory ls: cannot access '/var/lib/dirsrv/slapd-standalone1/ldif/ticket48005.ldif': No such file or directory -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:31 Ticket 48005 setup... [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:41 No ulimit -c in /etc/sysconfig/dirsrv [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:42 Adding it [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:50 No LimitCORE in /etc/sysconfig/dirsrv.systemd [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:51 Adding it [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:64 dbgen_prog: /bin/dbgen.pl [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:70 We have 10106 entries. [1m[31mERROR [0m lib389:tasks.py:492 Error: import task import_09292020_224123 for file /var/lib/dirsrv/slapd-standalone1/ldif/ticket48005.ldif exited with -23 [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:75 Importing /var/lib/dirsrv/slapd-standalone1/ldif/ticket48005.ldif complete. | |||
Passed | tickets/ticket48005_test.py::test_ticket48005_memberof | 13.26 | |
------------------------------Captured stderr call------------------------------ ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:86 Ticket 48005 memberof test... [32mINFO [0m lib389:tasks.py:874 fixupMemberOf task fixupmemberof_09292020_224135 for basedn dc=example,dc=com completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:110 No core files are found [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:119 Ticket 48005 memberof test complete | |||
Passed | tickets/ticket48005_test.py::test_ticket48005_automember | 20.17 | |
------------------------------Captured stderr call------------------------------ ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:138 Ticket 48005 automember test... [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:143 Adding automember config [32mINFO [0m lib389:tasks.py:983 Automember Rebuild Membership task(task-09292020_224148) completedsuccessfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:176 No core files are found [32mINFO [0m lib389:tasks.py:1036 Automember Export Updates task (task-09292020_224152) completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:198 No core files are found [32mINFO [0m lib389:tasks.py:1084 Automember Map Updates task (task-09292020_224155) completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:222 No core files are found [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:231 Ticket 48005 automember test complete | |||
Passed | tickets/ticket48005_test.py::test_ticket48005_syntaxvalidate | 3.60 | |
------------------------------Captured stderr call------------------------------ ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:241 Ticket 48005 syntax validate test... [32mINFO [0m lib389:tasks.py:1252 Syntax Validate task (task-09292020_224204) completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:261 No core files are found [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:265 Ticket 48005 syntax validate test complete | |||
Passed | tickets/ticket48005_test.py::test_ticket48005_schemareload | 3.25 | |
------------------------------Captured stderr call------------------------------ ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:334 Ticket 48005 schema reload test... [32mINFO [0m lib389:tasks.py:1166 Schema Reload task (task-09292020_224212) completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:354 No core files are found [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:358 Ticket 48005 schema reload test complete | |||
Passed | tickets/ticket48026_test.py::test_ticket48026 | 5.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48026_test:ticket48026_test.py:114 Test complete | |||
Passed | tickets/ticket48109_test.py::test_ticket48109 | 28.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:32 Test case 0 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:77 match: conn=1 op=3 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:85 l1: [29/Sep/2020:22:42:46.017434944 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000229740 optime=0.000275864 etime=0.000502980 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:88 match: nentires=1 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:93 Entry uid=a* found. [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:100 Test case 0 - OK - substr index used [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:119 Test case 1 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:163 match: conn=1 op=3 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:171 l1: [29/Sep/2020:22:42:46.017434944 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000229740 optime=0.000275864 etime=0.000502980 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:174 match: nentires=1 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:179 Entry uid=*b found. [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:186 Test case 1 - OK - substr index used [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:208 Test case 2 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:259 match: conn=1 op=3 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:267 l1: [29/Sep/2020:22:42:46.017434944 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000229740 optime=0.000275864 etime=0.000502980 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:270 match: nentires=1 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:275 Entry uid=c* found. [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:282 Test case 2-1 - OK - correct substr index used [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:294 match: conn=1 op=4 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:302 l1: [29/Sep/2020:22:43:05.060720745 -0400] conn=1 op=4 RESULT err=0 tag=101 nentries=1 wtime=0.000295051 optime=0.000314191 etime=0.000605754 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:305 match: nentires=1 [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:310 Entry uid=*2 found. [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:317 Test case 2-2 - OK - correct substr index used [32mINFO [0m tests.tickets.ticket48109_test:ticket48109_test.py:331 Testcase PASSED | |||
Passed | tickets/ticket48170_test.py::test_ticket48170 | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48170_test:ticket48170_test.py:29 Index update correctly rejected [32mINFO [0m tests.tickets.ticket48170_test:ticket48170_test.py:36 Test complete | |||
Passed | tickets/ticket48194_test.py::test_init | 6.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Testing Ticket 48194 - harden the list of ciphers available by default [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:57 ######################### enable SSL in the directory server with all ciphers ###################### | |||
Passed | tickets/ticket48194_test.py::test_run_0 | 5.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:131 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake successfully [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake successfully [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_3 | 5.55 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 4 - Check the ciphers availability for "-all" [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:199 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' | |||
Passed | tickets/ticket48194_test.py::test_run_9 | 6.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:316 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake successfully [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake successfully [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_11 | 5.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48194_test.py:40 ############################################### [32mINFO [0m lib389:ticket48194_test.py:41 ####### Test Case 12 - Check nsSSL3Ciphers: +fortezza, which is not supported [32mINFO [0m lib389:ticket48194_test.py:42 ############################################### [32mINFO [0m lib389.utils:ticket48194_test.py:337 ######################### Restarting the server ###################### [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' [32mINFO [0m lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed [32mINFO [0m lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 [32mINFO [0m lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' | |||
Passed | tickets/ticket48212_test.py::test_ticket48212 | 13.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ [29/Sep/2020:22:44:44.052297938 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:44:44.062160267 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [29/Sep/2020:22:44:44.065851783 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [29/Sep/2020:22:44:44.070630039 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [29/Sep/2020:22:44:44.073913402 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [29/Sep/2020:22:44:44.077269748 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [29/Sep/2020:22:44:44.081349837 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [29/Sep/2020:22:44:44.087188398 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [29/Sep/2020:22:44:44.090444961 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [29/Sep/2020:22:44:44.094599775 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [29/Sep/2020:22:44:44.099073950 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [29/Sep/2020:22:44:44.102603311 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [29/Sep/2020:22:44:44.108226635 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [29/Sep/2020:22:44:44.114803556 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [29/Sep/2020:22:44:44.118605548 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [29/Sep/2020:22:44:47.387593702 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:44:47.398587167 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [29/Sep/2020:22:44:47.402339609 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [29/Sep/2020:22:44:47.406539894 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [29/Sep/2020:22:44:47.409504940 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [29/Sep/2020:22:44:47.412971544 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [29/Sep/2020:22:44:47.416488421 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [29/Sep/2020:22:44:47.419591805 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [29/Sep/2020:22:44:47.422958564 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [29/Sep/2020:22:44:47.426879466 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [29/Sep/2020:22:44:47.435791878 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [29/Sep/2020:22:44:47.439008568 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [29/Sep/2020:22:44:47.443865965 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [29/Sep/2020:22:44:47.450976354 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [29/Sep/2020:22:44:47.455787101 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [29/Sep/2020:22:44:47.460075558 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [29/Sep/2020:22:44:50.794350234 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:44:50.805804331 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [29/Sep/2020:22:44:50.810374777 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [29/Sep/2020:22:44:50.815501417 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [29/Sep/2020:22:44:50.820361509 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [29/Sep/2020:22:44:50.824023965 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [29/Sep/2020:22:44:50.827943539 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [29/Sep/2020:22:44:50.831782686 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [29/Sep/2020:22:44:50.840764177 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [29/Sep/2020:22:44:50.845733412 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [29/Sep/2020:22:44:50.850658804 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [29/Sep/2020:22:44:50.854268925 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [29/Sep/2020:22:44:50.859027156 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [29/Sep/2020:22:44:50.865347126 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [29/Sep/2020:22:44:50.870105139 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [29/Sep/2020:22:44:50.876504476 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [29/Sep/2020:22:44:54.239693529 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:44:54.255463780 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [29/Sep/2020:22:44:54.259445004 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [29/Sep/2020:22:44:54.264269440 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [29/Sep/2020:22:44:54.268100876 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [29/Sep/2020:22:44:54.271463312 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [29/Sep/2020:22:44:54.276152846 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [29/Sep/2020:22:44:54.281072704 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [29/Sep/2020:22:44:54.285464804 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [29/Sep/2020:22:44:54.292133764 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [29/Sep/2020:22:44:54.297469697 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [29/Sep/2020:22:44:54.301393400 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [29/Sep/2020:22:44:54.307209300 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [29/Sep/2020:22:44:54.315692263 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [29/Sep/2020:22:44:54.320219124 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [29/Sep/2020:22:44:54.325962420 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48212_test.py:70 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket48212_test.py:83 ######################### Import Test data (/var/lib/dirsrv/slapd-standalone1/ldif/example1k_posix.ldif) ###################### [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_224440 for file /var/lib/dirsrv/slapd-standalone1/ldif/example1k_posix.ldif completed successfully [32mINFO [0m lib389:ticket48212_test.py:19 +++++ dbverify +++++ [32mINFO [0m lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V [32mINFO [0m lib389:ticket48212_test.py:43 dbverify passed [32mINFO [0m lib389:ticket48212_test.py:92 ######################### Add index by uidnumber ###################### [32mINFO [0m lib389:ticket48212_test.py:101 ######################### reindexing... ###################### [32mINFO [0m lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_224444 completed successfully [32mINFO [0m lib389:ticket48212_test.py:19 +++++ dbverify +++++ [32mINFO [0m lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V [32mINFO [0m lib389:ticket48212_test.py:43 dbverify passed [32mINFO [0m lib389:ticket48212_test.py:106 ######################### Add nsMatchingRule ###################### [32mINFO [0m lib389:ticket48212_test.py:112 ######################### reindexing... ###################### [32mINFO [0m lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_224447 completed successfully [32mINFO [0m lib389:ticket48212_test.py:19 +++++ dbverify +++++ [32mINFO [0m lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V [32mINFO [0m lib389:ticket48212_test.py:43 dbverify passed [32mINFO [0m lib389:ticket48212_test.py:117 ######################### Delete nsMatchingRule ###################### [32mINFO [0m lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_224451 completed successfully [32mINFO [0m lib389:ticket48212_test.py:19 +++++ dbverify +++++ [32mINFO [0m lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V [32mINFO [0m lib389:ticket48212_test.py:43 dbverify passed | |||
Passed | tickets/ticket48214_test.py::test_ticket48214_run | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48214_test.py:83 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket48214_test.py:86 ######################### Out of Box ###################### [32mINFO [0m lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ [32mINFO [0m lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ [32mINFO [0m lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif [32mINFO [0m lib389:ticket48214_test.py:28 Empty: [32mINFO [0m lib389:ticket48214_test.py:50 No nsslapd-maxbersize found in dse.ldif [32mINFO [0m lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'2097152' [32mINFO [0m lib389:ticket48214_test.py:72 Checking 2097152 vs 2097152 [32mINFO [0m lib389:ticket48214_test.py:89 ######################### Add nsslapd-maxbersize: 0 ###################### [32mINFO [0m lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ [32mINFO [0m lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ [32mINFO [0m lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif [32mINFO [0m lib389:ticket48214_test.py:35 Right format - nsslapd-maxbersize: 0 [32mINFO [0m lib389:ticket48214_test.py:52 nsslapd-maxbersize: 0 [32mINFO [0m lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'2097152' [32mINFO [0m lib389:ticket48214_test.py:72 Checking 2097152 vs 2097152 [32mINFO [0m lib389:ticket48214_test.py:93 ######################### Add nsslapd-maxbersize: 10000 ###################### [32mINFO [0m lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ [32mINFO [0m lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ [32mINFO [0m lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif [32mINFO [0m lib389:ticket48214_test.py:35 Right format - nsslapd-maxbersize: 10000 [32mINFO [0m lib389:ticket48214_test.py:55 nsslapd-maxbersize: 10000 [32mINFO [0m lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'10000' [32mINFO [0m lib389:ticket48214_test.py:98 ticket48214 was successfully verified. | |||
Passed | tickets/ticket48228_test.py::test_ticket48228_test_global_policy | 14.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket48233_test.py::test_ticket48233 | 5.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48233_test:ticket48233_test.py:54 Test complete | |||
Passed | tickets/ticket48234_test.py::test_ticket48234 | 0.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:35 Bind as root DN [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:46 Add aci which contains extensible filter. [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:58 Add entries ... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:61 adding OU0 under dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:64 adding outest under ou=OU0,dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:61 adding OU1 under dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:64 adding outest under ou=OU1,dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:69 adding admin under ou=outest,ou=OU0,dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:69 adding admin under ou=outest,ou=OU1,dc=example,dc=com... [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:73 Bind as user cn=admin,ou=outest,ou=OU1,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48234_test:ticket48234_test.py:92 Test complete | |||
Passed | tickets/ticket48252_test.py::test_ticket48252_setup | 0.39 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket48252_test.py::test_ticket48252_run_0 | 11.39 | |
------------------------------Captured stderr call------------------------------ [29/Sep/2020:22:45:53.706910236 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [29/Sep/2020:22:45:53.712122694 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:45:53.723383285 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [29/Sep/2020:22:45:53.726372427 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7487287296, process usage 22982656 [29/Sep/2020:22:45:53.728985159 -0400] - INFO - check_and_set_import_cache - Import allocates 2924721KB import cache. [29/Sep/2020:22:45:53.892734566 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: cn [29/Sep/2020:22:45:53.896539793 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [29/Sep/2020:22:45:53.899244995 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [29/Sep/2020:22:45:53.905696381 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [29/Sep/2020:22:45:53.928542333 -0400] - INFO - bdb_pre_close - All database threads now stopped -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db'] [32mINFO [0m lib389:ticket48252_test.py:63 Did not found key test_user0 in dbscan output [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db'] [32mINFO [0m lib389:ticket48252_test.py:63 Did not found key test_user0 in dbscan output | |||
Passed | tickets/ticket48252_test.py::test_ticket48252_run_1 | 4.19 | |
------------------------------Captured stderr call------------------------------ [29/Sep/2020:22:46:01.630390639 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [29/Sep/2020:22:46:01.638386978 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:22:46:01.646161589 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [29/Sep/2020:22:46:01.649426029 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7488950272, process usage 22933504 [29/Sep/2020:22:46:01.653091185 -0400] - INFO - check_and_set_import_cache - Import allocates 2925371KB import cache. [29/Sep/2020:22:46:01.797701652 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: objectclass [29/Sep/2020:22:46:01.801189525 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [29/Sep/2020:22:46:01.804238042 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [29/Sep/2020:22:46:01.811926657 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [29/Sep/2020:22:46:01.834371998 -0400] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | tickets/ticket48265_test.py::test_ticket48265_test | 0.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48265_test:ticket48265_test.py:34 Adding 20 test entries... [32mINFO [0m tests.tickets.ticket48265_test:ticket48265_test.py:51 Search with Ticket 47521 type complex filter [32mINFO [0m tests.tickets.ticket48265_test:ticket48265_test.py:60 Search with Ticket 48265 type complex filter [32mINFO [0m tests.tickets.ticket48265_test:ticket48265_test.py:69 Test 48265 complete | |||
Passed | tickets/ticket48266_test.py::test_ticket48266_fractional | 10.71 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 233b422f-8e26-4417-9253-731b76bc8136 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 41911309-34c0-4df7-9a3c-647294598f54 / got description=233b422f-8e26-4417-9253-731b76bc8136) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7467fc4e-0f90-4862-9610-00f1802a0558 / got description=41911309-34c0-4df7-9a3c-647294598f54) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket48266_test.py::test_ticket48266_check_repl_desc | 1.19 | |
No log output captured. | |||
Passed | tickets/ticket48270_test.py::test_ticket48270_init | 0.64 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:26 Initialization: add dummy entries for the tests | |||
Passed | tickets/ticket48270_test.py::test_ticket48270_homeDirectory_indexed_cis | 2.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_224652 completed successfully [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:63 Check indexing succeeded with a specified matching rule | |||
Passed | tickets/ticket48270_test.py::test_ticket48270_homeDirectory_mixed_value | 0.01 | |
No log output captured. | |||
Passed | tickets/ticket48270_test.py::test_ticket48270_extensible_search | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:91 Default: can retrieve an entry filter syntax with exact stored value [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:93 Default: can retrieve an entry filter caseExactIA5Match with exact stored value [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:97 Default: can not retrieve an entry filter syntax match with lowered stored value [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:103 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value [32mINFO [0m tests.tickets.ticket48270_test:ticket48270_test.py:110 Default: can retrieve an entry filter caseIgnoreIA5Match with lowered stored value | |||
Passed | tickets/ticket48272_test.py::test_ticket48272 | 9.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48272_test:ticket48272_test.py:129 Test PASSED | |||
Passed | tickets/ticket48294_test.py::test_48294_init | 0.32 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48294_test.py:31 ############################################### [32mINFO [0m lib389:ticket48294_test.py:32 ####### Testing Ticket 48294 - Linked Attributes plug-in - won't update links after MODRDN operation [32mINFO [0m lib389:ticket48294_test.py:33 ############################################### | |||
Passed | tickets/ticket48294_test.py::test_48294_run_0 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48294_test.py:31 ############################################### [32mINFO [0m lib389:ticket48294_test.py:32 ####### Case 0 - Rename employee1 and adjust the link type value by replace [32mINFO [0m lib389:ticket48294_test.py:33 ############################################### [32mINFO [0m lib389:ticket48294_test.py:59 ######################### MODRDN uid=employee2 ###################### | |||
Passed | tickets/ticket48294_test.py::test_48294_run_1 | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48294_test.py:31 ############################################### [32mINFO [0m lib389:ticket48294_test.py:32 ####### Case 1 - Rename employee2 and adjust the link type value by delete and add [32mINFO [0m lib389:ticket48294_test.py:33 ############################################### [32mINFO [0m lib389:ticket48294_test.py:59 ######################### MODRDN uid=employee3 ###################### | |||
Passed | tickets/ticket48294_test.py::test_48294_run_2 | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48294_test.py:31 ############################################### [32mINFO [0m lib389:ticket48294_test.py:32 ####### Case 2 - Rename manager1 to manager2 and make sure the managed attribute value is updated [32mINFO [0m lib389:ticket48294_test.py:33 ############################################### [32mINFO [0m lib389:ticket48294_test.py:59 ######################### MODRDN uid=manager2 ###################### | |||
Passed | tickets/ticket48295_test.py::test_48295_init | 0.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48295_test.py:30 ############################################### [32mINFO [0m lib389:ticket48295_test.py:31 ####### Testing Ticket 48295 - Entry cache is not rolled back -- Linked Attributes plug-in - wrong behaviour when adding valid and broken links [32mINFO [0m lib389:ticket48295_test.py:32 ############################################### | |||
Passed | tickets/ticket48295_test.py::test_48295_run | 0.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48295_test.py:30 ############################################### [32mINFO [0m lib389:ticket48295_test.py:31 ####### Add 2 linktypes to manager1 - one exists, another does not to make sure the managed entry does not have managed type. [32mINFO [0m lib389:ticket48295_test.py:32 ############################################### | |||
Passed | tickets/ticket48312_test.py::test_ticket48312 | 0.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48312_test:ticket48312_test.py:117 Test complete | |||
Passed | tickets/ticket48342_test.py::test_ticket4026 | 91.27 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 19b089c7-5fc5-4dc9-94b2-bed85ad52745 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect eb7d54bc-550d-4c7a-9438-6a207b7f585d / got description=19b089c7-5fc5-4dc9-94b2-bed85ad52745) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b95bf15a-b015-49b3-b7cd-d76fd44dee50 / got description=eb7d54bc-550d-4c7a-9438-6a207b7f585d) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f0781814-8afb-4da5-96bb-452c5714bdae / got description=b95bf15a-b015-49b3-b7cd-d76fd44dee50) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:127 Test complete [32mINFO [0m tests.tickets.ticket48342_test:ticket48342_test.py:135 Test complete | |||
Passed | tickets/ticket48354_test.py::test_ticket48354 | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48354_test:ticket48354_test.py:50 Test PASSED | |||
Passed | tickets/ticket48362_test.py::test_ticket48362 | 93.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e0fb30c6-4ded-421a-98ef-5a0ff79ed66c / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7eef554e-9ad2-40db-a040-756646536ad4 / got description=e0fb30c6-4ded-421a-98ef-5a0ff79ed66c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:28 Add dna plugin config entry...ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:48 Enable the DNA plugin... [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:55 Restarting the server... [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:28 Add dna plugin config entry...ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:48 Enable the DNA plugin... [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:55 Restarting the server... [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:83 ======================== Update dnaPortNum=39001 ============================ [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:90 ======================== Update done [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:83 ======================== Update dnaPortNum=39002 ============================ [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:90 ======================== Update done [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:132 ======================== BEFORE RESTART ============================ [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:135 ======================== BEFORE RESTART ============================ [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:141 ======================== BEFORE RESTART ============================ [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:150 =================== AFTER RESTART ================================= [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:153 =================== AFTER RESTART ================================= [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:159 =================== AFTER RESTART ================================= [32mINFO [0m tests.tickets.ticket48362_test:ticket48362_test.py:162 Test complete | |||
Passed | tickets/ticket48366_test.py::test_ticket48366_init | 0.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48366_test.py:44 Add subtree: ou=green,dc=example,dc=com [32mINFO [0m lib389:ticket48366_test.py:48 Add subtree: ou=red,dc=example,dc=com [32mINFO [0m lib389:ticket48366_test.py:54 Add cn=test,ou=people,dc=example,dc=com [32mINFO [0m lib389:ticket48366_test.py:60 Add cn=proxy,ou=people,dc=example,dc=com [32mINFO [0m lib389.utils:ticket48366_test.py:90 Adding %d test entries... | |||
Passed | tickets/ticket48366_test.py::test_ticket48366_search_user | 0.08 | |
No log output captured. | |||
Passed | tickets/ticket48366_test.py::test_ticket48366_search_dm | 0.26 | |
No log output captured. | |||
Passed | tickets/ticket48370_test.py::test_ticket48370 | 0.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48370_test:ticket48370_test.py:187 Test PASSED | |||
Passed | tickets/ticket48383_test.py::test_ticket48383 | 48.94 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/standalone1.ldif -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket48383_test:ticket48383_test.py:62 Failed to change nsslapd-cachememsize No such object [32mINFO [0m tests.tickets.ticket48383_test:ticket48383_test.py:88 Test complete | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_init | 1.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:26 Initialization: add dummy entries for the tests | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_homeDirectory_mixed_value | 0.00 | |
No log output captured. | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_extensible_search | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:49 Default: can retrieve an entry filter syntax with exact stored value [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:51 Default: can retrieve an entry filter caseExactIA5Match with exact stored value [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:55 Default: can not retrieve an entry filter syntax match with lowered stored value [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:61 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:68 Default: can retrieve an entry filter caseIgnoreIA5Match with lowered stored value | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_homeDirectory_index_cfg | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:73 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_homeDirectory_index_run | 2.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_225332 completed successfully [32mINFO [0m tests.tickets.ticket48497_test:ticket48497_test.py:93 Check indexing succeeded with a specified matching rule | |||
Passed | tickets/ticket48665_test.py::test_ticket48665 | 0.93 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48665_test:ticket48665_test.py:40 5 entries are returned from the server. [31mCRITICAL[0m tests.tickets.ticket48665_test:ticket48665_test.py:47 Failed to change nsslapd-cachememsize No such object [32mINFO [0m tests.tickets.ticket48665_test:ticket48665_test.py:52 5 entries are returned from the server. [32mINFO [0m tests.tickets.ticket48665_test:ticket48665_test.py:63 5 entries are returned from the server. [32mINFO [0m tests.tickets.ticket48665_test:ticket48665_test.py:65 Test complete | |||
Passed | tickets/ticket48745_test.py::test_ticket48745_init | 0.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:26 Initialization: add dummy entries for the tests | |||
Passed | tickets/ticket48745_test.py::test_ticket48745_homeDirectory_indexed_cis | 2.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_225358 completed successfully [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:63 Check indexing succeeded with a specified matching rule | |||
Passed | tickets/ticket48745_test.py::test_ticket48745_homeDirectory_mixed_value | 0.01 | |
No log output captured. | |||
Passed | tickets/ticket48745_test.py::test_ticket48745_extensible_search_after_index | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:91 Default: can retrieve an entry filter syntax with exact stored value [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:99 Default: can retrieve an entry filter caseExactIA5Match with exact stored value [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:106 Default: can not retrieve an entry filter syntax match with lowered stored value [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:112 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value [32mINFO [0m tests.tickets.ticket48745_test:ticket48745_test.py:119 Default: can retrieve an entry filter caseIgnoreIA5Match with lowered stored value | |||
Passed | tickets/ticket48746_test.py::test_ticket48746_init | 0.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:26 Initialization: add dummy entries for the tests | |||
Passed | tickets/ticket48746_test.py::test_ticket48746_homeDirectory_indexed_cis | 2.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_225407 completed successfully [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:63 Check indexing succeeded with a specified matching rule | |||
Passed | tickets/ticket48746_test.py::test_ticket48746_homeDirectory_mixed_value | 0.01 | |
No log output captured. | |||
Passed | tickets/ticket48746_test.py::test_ticket48746_extensible_search_after_index | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:99 Default: can retrieve an entry filter caseExactIA5Match with exact stored value | |||
Passed | tickets/ticket48746_test.py::test_ticket48746_homeDirectory_indexed_ces | 2.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:104 index homeDirectory in caseExactIA5Match, this would trigger the crash [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:121 successfully checked that filter with exact mr , a filter with lowercase eq is failing [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_225410 completed successfully [32mINFO [0m tests.tickets.ticket48746_test:ticket48746_test.py:127 Check indexing succeeded with a specified matching rule | |||
Passed | tickets/ticket48759_test.py::test_ticket48759 | 21.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48759_test.py:66 !!!!!!! uid=member2,dc=example,dc=com: memberof->b'cn=group,dc=example,dc=com' [32mINFO [0m lib389:ticket48759_test.py:66 !!!!!!! uid=member2,dc=example,dc=com: memberof->b'cn=group,dc=example,dc=com' [32mINFO [0m lib389:ticket48759_test.py:66 !!!!!!! uid=member2,dc=example,dc=com: memberof->b'cn=group,dc=example,dc=com' | |||
Passed | tickets/ticket48799_test.py::test_ticket48799 | 15.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect aaeb7493-f4f1-44f5-b873-9616a145deac / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48799_test:ticket48799_test.py:80 Test complete | |||
Passed | tickets/ticket48808_test.py::test_ticket48808 | 6.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:159 Run multiple paging controls on a single connection [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 100 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:166 Set user bind [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:169 Create simple paged results control instance [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 0 [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 1 [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 2 [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:193 Set Directory Manager bind back [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 100 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:197 Abandon the search [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:204 Set user bind [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:207 Create simple paged results control instance [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:224 Set Directory Manager bind back [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:228 Search should fail with 'nsPagedSizeLimit = 5'and 'nsslapd-pagedsizelimit = 15' with 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to b'15'. Previous value - [b'0']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to b'5'. Previous value - None. Modified suffix - uid=simplepaged_test,dc=example,dc=com. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:243 Set user bind [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:246 Create simple paged results control instance [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:250 Expect to fail with SIZELIMIT_EXCEEDED [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:130 Getting page 0 [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:255 Set Directory Manager bind back [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'15']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to None. Previous value - [b'5']. Modified suffix - uid=simplepaged_test,dc=example,dc=com. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:263 Search should pass with 'nsPagedSizeLimit = 15'and 'nsslapd-pagedsizelimit = 5' with 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to b'5'. Previous value - [b'0']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to b'15'. Previous value - None. Modified suffix - uid=simplepaged_test,dc=example,dc=com. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:277 Set user bind [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:280 Create simple paged results control instance [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:284 Search should PASS [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:130 Getting page 0 [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:287 10 results [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:290 Set Directory Manager bind back [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'5']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to None. Previous value - [b'15']. Modified suffix - uid=simplepaged_test,dc=example,dc=com. | |||
Passed | tickets/ticket48844_test.py::test_ticket48844_init | 1.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=bitwise,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=TestBitw,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=TestBitw,cn=ldbm database,cn=plugins,cn=config cn: TestBitw nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/TestBitw nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=bitwise,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=bitwise,dc=com",cn=mapping tree,cn=config cn: dc=bitwise,dc=com nsslapd-backend: TestBitw nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dbitwise\2Cdc\3Dcom,cn=mapping tree,cn=config cn: dc=bitwise,dc=com nsslapd-backend: TestBitw nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree | |||
Passed | tickets/ticket48844_test.py::test_ticket48844_bitwise_on | 3.24 | |
No log output captured. | |||
Passed | tickets/ticket48844_test.py::test_ticket48844_bitwise_off | 4.81 | |
No log output captured. | |||
Passed | tickets/ticket48891_test.py::test_ticket48891_setup | 2.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48891_test.py:43 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket48891_test.py:52 ######################### SETUP SUFFIX o=ticket48891.org ###################### [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=ticket48891.org [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=ticket48891,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ticket48891,cn=ldbm database,cn=plugins,cn=config cn: ticket48891 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/ticket48891 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=ticket48891.org objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=ticket48891.org",cn=mapping tree,cn=config cn: dc=ticket48891.org nsslapd-backend: ticket48891 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dticket48891.org,cn=mapping tree,cn=config cn: dc=ticket48891.org nsslapd-backend: ticket48891 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:ticket48891_test.py:61 ######################### Generate Test data ###################### [32mINFO [0m lib389:ticket48891_test.py:77 ######################### SEARCH ALL ###################### [32mINFO [0m lib389:ticket48891_test.py:78 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci [32mINFO [0m lib389:ticket48891_test.py:82 Returned 10 entries. [32mINFO [0m lib389:ticket48891_test.py:86 10 person entries are successfully created under dc=ticket48891.org. | |||
Passed | tickets/ticket48893_test.py::test_ticket48893 | 0.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48893_test:ticket48893_test.py:46 Test PASSED | |||
Passed | tickets/ticket48896_test.py::test_ticket48896 | 1.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:69 Testing Ticket 48896 - Default Setting for passwordMinTokenLength does not work [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:71 Setting global password policy with password syntax. [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:80 Default passwordMinTokenLength == b'3' [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:81 Default passwordInHistory == b'6' [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:83 Adding a user. [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, password} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: password -> Abcd012+, which should be ok [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> user, which should fail [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> buser123, which should fail [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tuse!1234, which should fail [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tuse!0987, which should fail [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tabc!1234, which should fail [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Direc+ory389, which should be ok [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED [32mINFO [0m tests.tickets.ticket48896_test:ticket48896_test.py:132 SUCCESS | |||
Passed | tickets/ticket48906_test.py::test_ticket48906_setup | 0.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48906_test.py:63 Bind as cn=Directory Manager [32mINFO [0m lib389:ticket48906_test.py:83 ######################### SEARCH ALL ###################### [32mINFO [0m lib389:ticket48906_test.py:84 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci [32mINFO [0m lib389:ticket48906_test.py:88 Returned 10 entries. [32mINFO [0m lib389:ticket48906_test.py:92 10 person entries are successfully created under dc=example,dc=com. | |||
Passed | tickets/ticket48906_test.py::test_ticket48906_dblock_default | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48906_test.py:149 ################################### [32mINFO [0m lib389:ticket48906_test.py:150 ### [32mINFO [0m lib389:ticket48906_test.py:151 ### Check that before any change config/monitor [32mINFO [0m lib389:ticket48906_test.py:152 ### contains the default value [32mINFO [0m lib389:ticket48906_test.py:153 ### [32mINFO [0m lib389:ticket48906_test.py:154 ################################### | |||
Passed | tickets/ticket48906_test.py::test_ticket48906_dblock_ldap_update | 3.73 | |
------------------------------Captured stdout call------------------------------ line locks:10000 expected_value 10000 value 10000 -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48906_test.py:160 ################################### [32mINFO [0m lib389:ticket48906_test.py:161 ### [32mINFO [0m lib389:ticket48906_test.py:162 ### Check that after ldap update [32mINFO [0m lib389:ticket48906_test.py:163 ### - monitor contains DEFAULT [32mINFO [0m lib389:ticket48906_test.py:164 ### - configured contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:165 ### - After stop dse.ldif contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:166 ### - After stop guardian contains DEFAULT [32mINFO [0m lib389:ticket48906_test.py:167 ### In fact guardian should differ from config to recreate the env [32mINFO [0m lib389:ticket48906_test.py:168 ### Check that after restart (DBenv recreated) [32mINFO [0m lib389:ticket48906_test.py:169 ### - monitor contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:170 ### - configured contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:171 ### - dse.ldif contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:172 ### [32mINFO [0m lib389:ticket48906_test.py:173 ################################### | |||
Passed | tickets/ticket48906_test.py::test_ticket48906_dblock_edit_update | 6.06 | |
------------------------------Captured stdout call------------------------------ line locks:20000 expected_value 20000 value 20000 line locks:40000 expected_value 40000 value 40000 -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48906_test.py:191 ################################### [32mINFO [0m lib389:ticket48906_test.py:192 ### [32mINFO [0m lib389:ticket48906_test.py:193 ### Check that after stop [32mINFO [0m lib389:ticket48906_test.py:194 ### - dse.ldif contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:195 ### - guardian contains DBLOCK_LDAP_UPDATE [32mINFO [0m lib389:ticket48906_test.py:196 ### Check that edit dse+restart [32mINFO [0m lib389:ticket48906_test.py:197 ### - monitor contains DBLOCK_EDIT_UPDATE [32mINFO [0m lib389:ticket48906_test.py:198 ### - configured contains DBLOCK_EDIT_UPDATE [32mINFO [0m lib389:ticket48906_test.py:199 ### Check that after stop [32mINFO [0m lib389:ticket48906_test.py:200 ### - dse.ldif contains DBLOCK_EDIT_UPDATE [32mINFO [0m lib389:ticket48906_test.py:201 ### - guardian contains DBLOCK_EDIT_UPDATE [32mINFO [0m lib389:ticket48906_test.py:202 ### [32mINFO [0m lib389:ticket48906_test.py:203 ################################### | |||
Passed | tickets/ticket48906_test.py::test_ticket48906_dblock_robust | 5.31 | |
------------------------------Captured stdout call------------------------------ line locks:40000 expected_value 40000 value 40000 -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket48906_test.py:245 ################################### [32mINFO [0m lib389:ticket48906_test.py:246 ### [32mINFO [0m lib389:ticket48906_test.py:247 ### Check that the following values are rejected [32mINFO [0m lib389:ticket48906_test.py:248 ### - negative value [32mINFO [0m lib389:ticket48906_test.py:249 ### - insuffisant value [32mINFO [0m lib389:ticket48906_test.py:250 ### - invalid value [32mINFO [0m lib389:ticket48906_test.py:251 ### Check that minimum value is accepted [32mINFO [0m lib389:ticket48906_test.py:252 ### [32mINFO [0m lib389:ticket48906_test.py:253 ################################### | |||
Passed | tickets/ticket48916_test.py::test_ticket48916 | 48.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5522f0f6-5e14-42cc-9a55-9e5da31b00fc / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5be36e81-84ad-4aab-899a-3c2fa35d18a3 / got description=5522f0f6-5e14-42cc-9a55-9e5da31b00fc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48916_test:ticket48916_test.py:128 Test PASSED | |||
Passed | tickets/ticket48944_test.py::test_ticket48944 | 102.42 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39202, 'ldap-secureport': 63902, 'server-id': 'consumer2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4227a305-fdd0-418e-8cda-664cc0ec55a1 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect cb138758-9574-4f6f-ab79-7872354b311a / got description=4227a305-fdd0-418e-8cda-664cc0ec55a1) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 2b4fc9b5-b8f5-432b-9a32-6645d923cf0c / got description=cb138758-9574-4f6f-ab79-7872354b311a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:175 Joining consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 32d8deb4-aed0-4504-908e-074101838213 / got description=2b4fc9b5-b8f5-432b-9a32-6645d923cf0c) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 already exists [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 already exists [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39202 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:108 Ticket 48944 - On a read only replica invalid state info can accumulate [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:54 Configure Account policy plugin on master1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:54 Configure Account policy plugin on master2 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:69 Configure Account policy plugin on consumer1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:69 Configure Account policy plugin on consumer2 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:115 Sleep for 10secs for the server to come up [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:117 Add few entries to server and check if entries are replicated [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:132 Checking if entries are synced across masters and consumers [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:152 Start master2 to sync lastLoginTime attribute from master1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:155 Stop master1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:157 Bind as user1 to master2 and check if lastLoginTime attribute is greater than master1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:161 Start all servers except master1 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:167 Check if consumers are updated with lastLoginTime attribute value from master2 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:174 Check if lastLoginTime update in consumers not synced to master2 [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:185 Start master1 and check if its updating its older lastLoginTime attribute to consumers [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:194 Check if lastLoginTime update from master2 is synced to all masters and consumers [32mINFO [0m tests.tickets.ticket48944_test:ticket48944_test.py:202 Checking consumer error logs for replica invalid state info | |||
Passed | tickets/ticket48956_test.py::test_ticket48956 | 38.77 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:54 ######################### Adding Account Policy entry: cn=Account Inactivation Policy,dc=example,dc=com ###################### [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:61 ######################### Adding Test User entry: uid=ticket48956user,dc=example,dc=com ###################### [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=example,dc=com - activated.\n' [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=example,dc=com - inactivated (inactivity limit exceeded).\n' [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=ticket48956,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ticket48956,cn=ldbm database,cn=plugins,cn=config cn: ticket48956 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/ticket48956 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix",cn=mapping tree,cn=config cn: dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix nsslapd-backend: ticket48956 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dthis\2Cdc\3Dis\2Cdc\3Da\2Cdc\3Dvery\2Cdc\3Dlong\2Cdc\3Dsuffix\2Cdc\3Dso\2Cdc\3Dlong\2Cdc\3Dsuffix\2Cdc\3Dextremely\2Cdc\3Dlong\2Cdc\3Dsuffix,cn=mapping tree,cn=config cn: dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix nsslapd-backend: ticket48956 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:54 ######################### Adding Account Policy entry: cn=Account Inactivation Policy,dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix ###################### [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:61 ######################### Adding Test User entry: uid=ticket48956user,dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix ###################### [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix - activated.\n' [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix - inactivated (inactivity limit exceeded).\n' [32mINFO [0m tests.tickets.ticket48956_test:ticket48956_test.py:121 Test PASSED | |||
Passed | tickets/ticket48973_test.py::test_ticket48973_init | 0.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:191 Initialization: add dummy entries for the tests | |||
Passed | tickets/ticket48973_test.py::test_ticket48973_ces_not_indexed | 2.71 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:211 Search (homeDirectory=/home/xyz_0) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:218 result=[29/Sep/2020:23:02:26.543659175 -0400] conn=2 op=102 RESULT err=0 tag=101 nentries=1 wtime=0.000152025 optime=0.001269576 etime=0.001416942 notes=U details="Partially Unindexed Filter | |||
Passed | tickets/ticket48973_test.py::test_ticket48973_homeDirectory_caseExactIA5Match_caseIgnoreIA5Match_indexing | 24.53 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:273 index homeDirectory in caseExactIA5Match and caseIgnoreIA5Match [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_230239 completed successfully [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:284 Check indexing succeeded with no specified matching rule [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/home/xyz_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:41.406197271 -0400] conn=1 op=9 RESULT err=0 tag=101 nentries=1 wtime=0.000227667 optime=0.000413735 etime=0.000637746 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/home/xyz_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:45.355429144 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000281703 optime=0.000567300 etime=0.000845936 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseIgnoreIA5Match:=/home/xyz_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:48.944664636 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000198165 optime=0.000572385 etime=0.000767281 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/HOME/XYZ_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:52.657277843 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=0 wtime=0.000223797 optime=0.000466489 etime=0.000686589 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/HOME/XYZ_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:02:56.418341139 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=0 wtime=0.000208302 optime=0.000592829 etime=0.000797533 [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseIgnoreIA5Match:=/HOME/XYZ_4) [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[29/Sep/2020:23:03:00.219011031 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000399922 optime=0.000853839 etime=0.001249479 | |||
Passed | tickets/ticket49008_test.py::test_ticket49008 | 51.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b6a3aac9-07a7-4c52-9537-44c50243c9ea / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ef90bfdd-d927-4d45-9c63-6b07a22ace1a / got description=b6a3aac9-07a7-4c52-9537-44c50243c9ea) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect e8e77530-b07b-4b78-8ec0-e82c0eccf796 / got description=ef90bfdd-d927-4d45-9c63-6b07a22ace1a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 555cc2de-7270-489a-891a-d2eff9dcbb2d / got description=e8e77530-b07b-4b78-8ec0-e82c0eccf796) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49008_test:ticket49008_test.py:115 ruv before fail: b'{replica 2 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002} 5f73f57c000000020000 5f73f5a5000300020000' [32mINFO [0m tests.tickets.ticket49008_test:ticket49008_test.py:116 ruv after fail: b'{replica 2 ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002} 5f73f57c000000020000 5f73f5a5000300020000' | |||
Passed | tickets/ticket49039_test.py::test_ticket49039 | 16.71 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-standalone1 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49039_test:ticket49039_test.py:112 Test Passed | |||
Passed | tickets/ticket49072_test.py::test_ticket49072_basedn | 5.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:40 Ticket 49072 memberof fixup task with invalid basedn... [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:59 output: b'Successfully added task entry "cn=memberOf_fixup_2020_9_29_23_6_16, cn=memberOf task, cn=tasks, cn=config"\n' [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:63 Error log out: ['[29/Sep/2020:23:06:16.366478150 -0400] - ERR - memberof-plugin - memberof_fixup_task_thread - Failed to get be backend from (dc=testdb,dc=com)\n'] | |||
Passed | tickets/ticket49072_test.py::test_ticket49072_filter | 20.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:77 Ticket 49072 memberof fixup task with invalid filter... [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:78 Wait for 10 secs and check if task is completed [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:82 memberof task is still running, wait for +10 secs [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:100 output: b'Successfully added task entry "cn=memberOf_fixup_2020_9_29_23_6_36, cn=memberOf task, cn=tasks, cn=config"\n' [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:104 Error log out: ['[29/Sep/2020:23:06:36.876411026 -0400] - ERR - memberof-plugin - memberof_fix_memberof - Failed (Bad search filter)\n'] [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:107 Ticket 49072 complete: memberOf fixup task does not validate args | |||
Passed | tickets/ticket49076_test.py::test_ticket49076 | 9.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket49095_test.py::test_ticket49095 | 0.15 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49095_test:ticket49095_test.py:79 Test Passed | |||
Passed | tickets/ticket49104_test.py::test_ticket49104_setup | 39.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:495 Import task import_09292020_230740 for file /var/lib/dirsrv/slapd-standalone1/ldif/49104.ldif completed successfully | |||
Passed | tickets/ticket49104_test.py::test_ticket49104 | 0.28 | |
------------------------------Captured stderr call------------------------------ valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory valgrind: /usr/bin/dbscan-bin: No such file or directory grep: /tmp/val49104.out: No such file or directory | |||
Passed | tickets/ticket49122_test.py::test_ticket49122 | 14.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: nsrole=cn=empty,dc=example,dc=com [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (nsrole=cn=empty,dc=example,dc=com) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(nsrole=cn=empty,dc=example,dc=com)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (!(nsrole=cn=empty,dc=example,dc=com)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(sn=app*))(userpassword=*)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(nsrole=cn=empty,dc=example,dc=com))(userpassword=*)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(nsrole=cn=empty,dc=example,dc=com)(sn=app*))(userpassword=*)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(sn=app*))(nsrole=cn=empty,dc=example,dc=com)) [32mINFO [0m tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(&(cn=*)(objectclass=person)(nsrole=cn=empty,dc=example,dc=com)))(uid=*)) [32mINFO [0m lib389:ticket49122_test.py:86 Test Passed | |||
Passed | tickets/ticket49180_test.py::test_ticket49180 | 49.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 28677f1d-a197-48da-9671-736c1088132e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7bd21358-6342-4913-80ac-7fb0c8108f66 / got description=28677f1d-a197-48da-9671-736c1088132e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 894261e7-7f7f-4088-85e2-01be7961bbe4 / got description=7bd21358-6342-4913-80ac-7fb0c8108f66) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8e12e3e8-ec86-48da-905c-c9b456322fd5 / got description=894261e7-7f7f-4088-85e2-01be7961bbe4) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8e12e3e8-ec86-48da-905c-c9b456322fd5 / got description=894261e7-7f7f-4088-85e2-01be7961bbe4) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 2054e0ca-ce7a-4c0e-8f6d-7fa579314022 / got description=8e12e3e8-ec86-48da-905c-c9b456322fd5) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e0a88642-1cae-4bc8-ba25-a181575d8188 / got description=2054e0ca-ce7a-4c0e-8f6d-7fa579314022) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:78 Running test_ticket49180... [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:80 Check that replication works properly on all masters [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:95 test_clean: disable master 4... [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:30 test_clean: remove all the agreements to master 4... [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:46 Restoring master 4... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect e92f2c66-bc33-443a-9ab8-d438a6e21d15 / got description=e0a88642-1cae-4bc8-ba25-a181575d8188) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a3d9440f-b2b1-4cf6-8e33-fd42cf009ddb / got description=e92f2c66-bc33-443a-9ab8-d438a6e21d15) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m2. [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m3. [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m4. [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:67 Replication is working m4 -> m1. [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:73 Master 4 has been successfully restored. [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:106 Errors found on m1: 0 [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:111 Errors found on m2: 0 [32mINFO [0m tests.tickets.ticket49180_test:ticket49180_test.py:116 Errors found on m3: 0 | |||
Passed | tickets/ticket49184_test.py::test_ticket49184 | 5.22 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49184_test:ticket49184_test.py:89 create users and group... [32mINFO [0m tests.tickets.ticket49184_test:ticket49184_test.py:39 Adding members to the group... [32mINFO [0m tests.tickets.ticket49184_test:ticket49184_test.py:39 Adding members to the group... | |||
Passed | tickets/ticket49227_test.py::test_ticket49227 | 30.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket49249_test.py::test_ticket49249 | 0.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket49273_test.py::test_49273_corrupt_dbversion | 3.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket49287_test.py::test_ticket49287 | 392.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4c06d0b0-eb85-45a8-a5ad-6f41bbe2c273 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e194a134-7c62-474d-a509-bdc8f40e1950 / got description=4c06d0b0-eb85-45a8-a5ad-6f41bbe2c273) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49287_test:ticket49287_test.py:77 update cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal [32mINFO [0m tests.tickets.ticket49287_test:ticket49287_test.py:77 update cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=test,dc=com",cn=mapping tree,cn=config cn: dc=test,dc=com nsslapd-backend: test nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: dc=test,dc=com nsslapd-backend: test nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=test,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=test,cn=ldbm database,cn=plugins,cn=config cn: test nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/test nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="dc=test,dc=com",cn=mapping tree,cn=config cn: dc=test,dc=com nsslapd-backend: test nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=dc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: dc=test,dc=com nsslapd-backend: test nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=test,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=test,cn=ldbm database,cn=plugins,cn=config cn: test nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/test nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 822763ee-5de7-4e64-a15a-e2d0d350b444 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 822763ee-5de7-4e64-a15a-e2d0d350b444 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 822763ee-5de7-4e64-a15a-e2d0d350b444 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f68ab5b4-fac3-4a29-a5eb-c05459de3b75 / got description=822763ee-5de7-4e64-a15a-e2d0d350b444) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=people,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=people,dc=test,dc=com nsslapd-backend: people nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dpeople\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=people,dc=test,dc=com nsslapd-backend: people nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=people,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=people,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=people,cn=ldbm database,cn=plugins,cn=config cn: people nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/people nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=people,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=people,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=people,dc=test,dc=com nsslapd-backend: people nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dpeople\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=people,dc=test,dc=com nsslapd-backend: people nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=people,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=people,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=people,cn=ldbm database,cn=plugins,cn=config cn: people nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/people nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=people,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8806253-6fca-431b-b4c5-778b574ed7cc / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8806253-6fca-431b-b4c5-778b574ed7cc / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8806253-6fca-431b-b4c5-778b574ed7cc / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8806253-6fca-431b-b4c5-778b574ed7cc / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a34f6416-ba65-4691-9d47-390e12795c8a / got description=f8806253-6fca-431b-b4c5-778b574ed7cc) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b0,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b1,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b2,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b3,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b4,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b5,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b6,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b7,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b8,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=b9,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435577.3829594-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435577.3829594-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435584.9433851-1,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435584.9433851-2,ou=people,dc=test,dc=com): [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_0,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_0,dc=test,dc=com nsslapd-backend: be_0 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_0\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_0,dc=test,dc=com nsslapd-backend: be_0 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_0,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_0,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_0,cn=ldbm database,cn=plugins,cn=config cn: be_0 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_0 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_0,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_0,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_0,dc=test,dc=com nsslapd-backend: be_0 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_0\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_0,dc=test,dc=com nsslapd-backend: be_0 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_0,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_0,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_0,cn=ldbm database,cn=plugins,cn=config cn: be_0 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_0 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_0,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8d82c4fd-39aa-4808-b08d-17b5e1a9404a / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8d82c4fd-39aa-4808-b08d-17b5e1a9404a / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8d82c4fd-39aa-4808-b08d-17b5e1a9404a / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8d82c4fd-39aa-4808-b08d-17b5e1a9404a / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a20e331b-893b-49f4-8c21-783ef656af4d / got description=8d82c4fd-39aa-4808-b08d-17b5e1a9404a) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_1,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_1,dc=test,dc=com nsslapd-backend: be_1 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_1\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_1,dc=test,dc=com nsslapd-backend: be_1 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_1,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_1,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_1,cn=ldbm database,cn=plugins,cn=config cn: be_1 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_1 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_1,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_1,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_1,dc=test,dc=com nsslapd-backend: be_1 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_1\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_1,dc=test,dc=com nsslapd-backend: be_1 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_1,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_1,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_1,cn=ldbm database,cn=plugins,cn=config cn: be_1 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_1 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_1,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b8f869c8-3200-4f7e-a1b7-7c11edc4188e / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b8f869c8-3200-4f7e-a1b7-7c11edc4188e / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b8f869c8-3200-4f7e-a1b7-7c11edc4188e / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b8f869c8-3200-4f7e-a1b7-7c11edc4188e / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1a718202-e997-4086-aa50-97082d742632 / got description=b8f869c8-3200-4f7e-a1b7-7c11edc4188e) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_2,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_2,dc=test,dc=com nsslapd-backend: be_2 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_2\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_2,dc=test,dc=com nsslapd-backend: be_2 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_2,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_2,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_2,cn=ldbm database,cn=plugins,cn=config cn: be_2 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_2 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_2,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_2,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_2,dc=test,dc=com nsslapd-backend: be_2 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_2\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_2,dc=test,dc=com nsslapd-backend: be_2 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_2,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_2,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_2,cn=ldbm database,cn=plugins,cn=config cn: be_2 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_2 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_2,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a907f65a-76e5-4d7e-a2cd-d64f1b974d0b / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a907f65a-76e5-4d7e-a2cd-d64f1b974d0b / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a907f65a-76e5-4d7e-a2cd-d64f1b974d0b / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a907f65a-76e5-4d7e-a2cd-d64f1b974d0b / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 050bb034-885f-43e7-9356-80136a4e1f4e / got description=a907f65a-76e5-4d7e-a2cd-d64f1b974d0b) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_3,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_3,dc=test,dc=com nsslapd-backend: be_3 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_3\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_3,dc=test,dc=com nsslapd-backend: be_3 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_3,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_3,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_3,cn=ldbm database,cn=plugins,cn=config cn: be_3 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_3 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_3,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_3,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_3,dc=test,dc=com nsslapd-backend: be_3 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_3\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_3,dc=test,dc=com nsslapd-backend: be_3 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_3,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_3,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_3,cn=ldbm database,cn=plugins,cn=config cn: be_3 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_3 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_3,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fa21e056-b713-444a-9e09-65c10145a603 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fa21e056-b713-444a-9e09-65c10145a603 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fa21e056-b713-444a-9e09-65c10145a603 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fa21e056-b713-444a-9e09-65c10145a603 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5abe7b13-0746-4add-b235-cb09670c1a53 / got description=fa21e056-b713-444a-9e09-65c10145a603) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_4,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_4,dc=test,dc=com nsslapd-backend: be_4 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_4\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_4,dc=test,dc=com nsslapd-backend: be_4 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_4,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_4,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_4,cn=ldbm database,cn=plugins,cn=config cn: be_4 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_4 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_4,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_4,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_4,dc=test,dc=com nsslapd-backend: be_4 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_4\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_4,dc=test,dc=com nsslapd-backend: be_4 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_4,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_4,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_4,cn=ldbm database,cn=plugins,cn=config cn: be_4 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_4 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_4,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 91e3aee5-4b8a-4921-be8c-050df519c8cf / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 91e3aee5-4b8a-4921-be8c-050df519c8cf / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 91e3aee5-4b8a-4921-be8c-050df519c8cf / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 91e3aee5-4b8a-4921-be8c-050df519c8cf / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7951ab58-35f5-4d32-98fb-4f1caa57d170 / got description=91e3aee5-4b8a-4921-be8c-050df519c8cf) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_5,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_5,dc=test,dc=com nsslapd-backend: be_5 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_5\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_5,dc=test,dc=com nsslapd-backend: be_5 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_5,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_5,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_5,cn=ldbm database,cn=plugins,cn=config cn: be_5 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_5 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_5,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_5,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_5,dc=test,dc=com nsslapd-backend: be_5 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_5\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_5,dc=test,dc=com nsslapd-backend: be_5 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_5,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_5,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_5,cn=ldbm database,cn=plugins,cn=config cn: be_5 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_5 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_5,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2218b9de-1e2a-491a-b3c0-d48591a247b0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2218b9de-1e2a-491a-b3c0-d48591a247b0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2218b9de-1e2a-491a-b3c0-d48591a247b0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2218b9de-1e2a-491a-b3c0-d48591a247b0 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0aadac72-62e4-4834-9990-a09f6a9cd475 / got description=2218b9de-1e2a-491a-b3c0-d48591a247b0) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_6,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_6,dc=test,dc=com nsslapd-backend: be_6 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_6\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_6,dc=test,dc=com nsslapd-backend: be_6 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_6,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_6,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_6,cn=ldbm database,cn=plugins,cn=config cn: be_6 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/be_6 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_6,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:154 Entry dn: cn="ou=be_6,dc=test,dc=com",cn=mapping tree,cn=config cn: ou=be_6,dc=test,dc=com nsslapd-backend: be_6 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=ou\3Dbe_6\2Cdc\3Dtest\2Cdc\3Dcom,cn=mapping tree,cn=config cn: ou=be_6,dc=test,dc=com nsslapd-backend: be_6 nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree [32mINFO [0m lib389:backend.py:80 List backend with suffix=ou=be_6,dc=test,dc=com [32mINFO [0m lib389:backend.py:290 Creating a local backend [32mINFO [0m lib389:backend.py:76 List backend cn=be_6,cn=ldbm database,cn=plugins,cn=config [32mINFO [0m lib389:__init__.py:1772 Found entry dn: cn=be_6,cn=ldbm database,cn=plugins,cn=config cn: be_6 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/be_6 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: ou=be_6,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2340b75c-950f-43dc-b8bd-b8aa91ea2013 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2340b75c-950f-43dc-b8bd-b8aa91ea2013 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2340b75c-950f-43dc-b8bd-b8aa91ea2013 / got description=None) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2340b75c-950f-43dc-b8bd-b8aa91ea2013 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 5801e494-fe12-42a1-9720-3712613e8d97 / got description=2340b75c-950f-43dc-b8bd-b8aa91ea2013) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a0,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a1,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a2,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a3,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a4,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a5,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a6,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a7,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a8,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=a9,ou=be_6,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a0,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a3,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a4,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a5,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a6,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a7,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a8,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:124 Adding user (cn=a9,ou=be_0,dc=test,dc=com): [32mINFO [0m tests.tickets.ticket49287_test:ticket49287_test.py:142 objectclass violation [32mINFO [0m tests.tickets.ticket49287_test:ticket49287_test.py:142 objectclass violation [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435733.7420297-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435733.7420297-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435739.0288455-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435739.0288455-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435744.2305996-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435744.2305996-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435749.405189-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435749.405189-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435754.7029843-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435754.7029843-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435759.8763754-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435759.8763754-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435765.075718-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435765.075718-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435777.4269211-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435777.4269211-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435785.8232687-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435785.8232687-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435791.0267837-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435791.0267837-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435796.2009706-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435796.2009706-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435801.420344-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435801.420344-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435806.6450486-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435806.6450486-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435811.8294551-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435811.8294551-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435823.7051625-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435823.7051625-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435829.9588714-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435829.9588714-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435835.1862366-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435835.1862366-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435840.4149368-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435840.4149368-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435845.6243281-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435845.6243281-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435850.9259975-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435850.9259975-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435856.171228-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435856.171228-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435875.0765872-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435875.0765872-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435880.7667809-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435880.7667809-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435886.2124627-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435886.2124627-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435891.437549-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435891.437549-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435896.744147-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435896.744147-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435902.0023353-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435902.0023353-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435907.267776-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1601435907.267776-2,ou=be_5,dc=test,dc=com): | |||
Passed | tickets/ticket49290_test.py::test_49290_range_unindexed_notes | 4.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ [29/Sep/2020:23:18:49.737907638 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [29/Sep/2020:23:18:49.748935176 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [29/Sep/2020:23:18:49.752034037 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7484768256, process usage 23113728 [29/Sep/2020:23:18:49.755040837 -0400] - INFO - check_and_set_import_cache - Import allocates 2923737KB import cache. [29/Sep/2020:23:18:49.923955048 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: modifytimestamp [29/Sep/2020:23:18:49.927614798 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [29/Sep/2020:23:18:49.930902167 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [29/Sep/2020:23:18:49.937922418 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [29/Sep/2020:23:18:49.963952849 -0400] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | tickets/ticket49386_test.py::test_ticket49386 | 32.74 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_0,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_1,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_2,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_3,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_4,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_5,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_6,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_7,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_8,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_9,ou=people,dc=example,dc=com): [32mINFO [0m lib389:ticket49386_test.py:65 !!!!!!! cn=user_1,ou=people,dc=example,dc=com: memberof->b'cn=group_1,ou=Groups,dc=example,dc=com' [32mINFO [0m lib389:ticket49386_test.py:66 !!!!!!! b'cn=group_1,ou=Groups,dc=example,dc=com' [32mINFO [0m lib389:ticket49386_test.py:67 !!!!!!! cn=group_1,ou=groups,dc=example,dc=com [32mINFO [0m tests.tickets.ticket49386_test:ticket49386_test.py:130 memberof log found: [29/Sep/2020:23:19:50.475781563 -0400] - DEBUG - memberof-plugin - memberof_postop_modrdn: Skip modrdn operation because src/dst identical cn=group_1,ou=Groups,dc=example,dc=com | |||
Passed | tickets/ticket49441_test.py::test_ticket49441 | 8.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49441_test:ticket49441_test.py:35 Position ldif files, and add indexes... [32mINFO [0m tests.tickets.ticket49441_test:ticket49441_test.py:52 Import LDIF with large indexed binary attributes... [1m[31mERROR [0m lib389:tasks.py:492 Error: import task import_09292020_232020 for file /var/lib/dirsrv/slapd-standalone1/ldifbinary.ldif exited with -23 [32mINFO [0m tests.tickets.ticket49441_test:ticket49441_test.py:61 Verify server is still running... [32mINFO [0m tests.tickets.ticket49441_test:ticket49441_test.py:68 Test PASSED | |||
Passed | tickets/ticket49460_test.py::test_ticket_49460 | 13.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 434922bc-66ad-425f-806f-a4a6e1c1b158 / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 22e375f5-4eed-4cb6-bf66-d64f2fcdea99 / got description=434922bc-66ad-425f-806f-a4a6e1c1b158) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0133777d-fcf1-4aeb-aa06-d086f63b0172 / got description=02c90db3-4563-4bb4-bbc2-aef88547abc2) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket49460_test:ticket49460_test.py:26 Adding user (cn=user11,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49460_test:ticket49460_test.py:26 Adding user (cn=user21,ou=people,dc=example,dc=com): [31mCRITICAL[0m tests.tickets.ticket49460_test:ticket49460_test.py:26 Adding user (cn=user31,ou=people,dc=example,dc=com): | |||
Passed | tickets/ticket49471_test.py::test_ticket49471 | 2.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket49471_test:ticket49471_test.py:28 Adding user (cn=user_1,ou=people,dc=example,dc=com): | |||
Passed | tickets/ticket49540_test.py::test_ticket49540 | 19.89 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:28 index homeDirectory [32mINFO [0m lib389:tasks.py:795 Index task index_attrs_09292020_232626 completed successfully [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 0 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 1 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 2 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 3 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 4 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 5 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> NO STATUS [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 6 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 7 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 8 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 9 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_09292020_232626,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' | |||
Passed | tickets/ticket49623_2_test.py::test_modrdn_loop | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket49623_2_test:ticket49623_2_test.py:64 Check the log messages for cenotaph error | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_init | 5.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:148 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d58e8294-a70a-4147-9463-910304d4210f / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9a823dd5-4af4-4350-805c-422835801961 / got description=d58e8294-a70a-4147-9463-910304d4210f) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:162 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 01e5a4ca-38b9-4c05-8b3f-f7e8445eeee9 / got description=9a823dd5-4af4-4350-805c-422835801961) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect edff890d-afe0-462f-b84a-6ae744faf2e3 / got description=01e5a4ca-38b9-4c05-8b3f-f7e8445eeee9) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect edff890d-afe0-462f-b84a-6ae744faf2e3 / got description=01e5a4ca-38b9-4c05-8b3f-f7e8445eeee9) [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect edff890d-afe0-462f-b84a-6ae744faf2e3 / got description=01e5a4ca-38b9-4c05-8b3f-f7e8445eeee9) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2137 SUCCESS: joined master from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2322 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=0,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=0,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=1,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=1,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=2,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=2,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=3,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=3,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=4,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=4,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=5,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=5,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=6,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=6,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=7,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=7,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=8,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=8,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=9,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=9,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=10,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=10,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=11,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=11,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=12,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=12,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=13,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=13,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=14,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=14,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=15,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=15,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=16,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=16,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=17,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=17,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=18,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=18,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=19,ou=distinguished,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=19,ou=distinguished,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_0,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_0,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_1,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_1,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_2,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_2,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_3,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_3,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_4,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_4,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_5,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_5,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_6,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_6,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_7,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_7,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_8,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_8,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_9,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_9,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_10,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_10,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_11,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_11,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_12,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_12,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_13,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_13,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_14,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_14,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_15,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_15,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_16,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_16,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_17,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_17,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_18,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_18,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_19,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_19,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_20,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_20,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_21,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_21,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_22,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_22,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_23,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_23,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_24,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_24,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_25,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_25,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_26,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_26,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_27,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_27,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_28,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_28,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_29,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_29,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_30,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_30,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_31,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_31,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_32,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_32,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_33,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_33,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_34,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_34,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_35,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_35,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_36,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_36,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_37,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_37,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_38,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_38,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_39,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_39,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_40,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_40,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_41,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_41,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_42,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_42,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_43,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_43,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_44,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_44,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_45,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_45,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_46,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_46,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_47,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_47,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_48,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_48,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_49,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_49,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_50,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_50,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_51,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_51,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_52,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_52,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_53,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_53,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_54,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_54,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_55,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_55,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_56,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_56,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_57,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_57,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_58,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_58,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_59,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_59,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_60,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_60,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_61,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_61,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_62,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_62,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_63,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_63,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_64,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_64,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_65,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_65,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_66,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_66,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_67,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_67,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_68,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_68,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_69,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_69,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_70,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_70,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_71,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_71,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_72,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_72,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_73,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_73,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_74,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_74,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_75,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_75,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_76,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_76,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_77,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_77,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_78,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_78,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_79,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_79,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_80,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_80,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_81,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_81,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_82,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_82,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_83,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_83,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_84,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_84,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_85,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_85,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_86,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_86,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_87,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_87,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_88,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_88,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_89,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_89,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_90,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_90,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_91,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_91,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_92,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_92,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_93,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_93,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_94,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_94,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_95,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_95,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_96,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_96,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_97,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_97,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_98,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_98,ou=regular,ou=people,dc=example,dc=com on M3 [31mCRITICAL[0m tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_99,ou=regular,ou=people,dc=example,dc=com): [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_99,ou=regular,ou=people,dc=example,dc=com on M3 | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_0 | 33.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:289 Search M1 employeeNumber=b'0' (vs. b'0') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:295 Search M2 employeeNumber=b'0' (vs. b'0') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:303 Search M3 employeeNumber=b'0' (vs. b'0') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_1 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:395 Search M1 employeeNumber=b'1' (vs. b'1') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:401 Search M2 employeeNumber=b'1' (vs. b'1') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:409 Search M3 employeeNumber=b'1' (vs. b'1') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_2 | 33.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:501 Search M1 employeeNumber=b'2' (vs. b'2') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:507 Search M2 employeeNumber=b'2' (vs. b'2') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:515 Search M3 employeeNumber=b'2' (vs. b'2') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_3 | 33.56 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:607 Search M1 employeeNumber=b'3' (vs. b'3') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:613 Search M2 employeeNumber=b'3' (vs. b'3') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:621 Search M3 employeeNumber=b'3' (vs. b'3') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_4 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:713 Search M1 employeeNumber=b'4' (vs. b'4') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:719 Search M2 employeeNumber=b'4' (vs. b'4') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:727 Search M3 employeeNumber=b'4' (vs. b'4') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_5 | 33.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:819 Search M1 employeeNumber=b'5' (vs. b'5') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:825 Search M2 employeeNumber=b'5' (vs. b'5') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:833 Search M3 employeeNumber=b'5' (vs. b'5') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_6 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:934 Search M1 employeeNumber=b'6.2' (vs. 6.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:940 Search M2 employeeNumber=b'6.2' (vs. 6.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:948 Search M3 employeeNumber=b'6.2' (vs. 6.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_7 | 33.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1042 Search M1 employeeNumber=b'7.2' (vs. 7.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1048 Search M2 employeeNumber=b'7.2' (vs. 7.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1056 Search M3 employeeNumber=b'7.2' (vs. 7.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_8 | 33.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1150 Search M1 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1156 Search M2 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1164 Search M3 employeeNumber=b'8.2' (vs. 8.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_9 | 33.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1259 Search M1 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1265 Search M2 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1273 Search M3 employeeNumber=b'9.2' (vs. 9.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_10 | 33.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1369 Search M1 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1375 Search M2 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1383 Search M3 employeeNumber=b'10.2' (vs. 10.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_11 | 33.59 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1479 Search M1 employeeNumber=b'11.1' (vs. 11.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1485 Search M2 employeeNumber=b'11.1' (vs. 11.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1493 Search M3 employeeNumber=b'11.1' (vs. 11.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_12 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1594 Search M1 employeeNumber=b'12.1' (vs. 12.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1600 Search M2 employeeNumber=b'12.1' (vs. 12.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1608 Search M3 employeeNumber=b'12.1' (vs. 12.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_13 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1709 Search M1 employeeNumber=b'13.1' (vs. 13.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1715 Search M2 employeeNumber=b'13.1' (vs. 13.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1723 Search M3 employeeNumber=b'13.1' (vs. 13.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_14 | 33.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1825 Search M1 employeeNumber=b'14.1' (vs. 14.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1831 Search M2 employeeNumber=b'14.1' (vs. 14.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1839 Search M3 employeeNumber=b'14.1' (vs. 14.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_15 | 33.59 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1940 Search M1 employeeNumber=b'15.1' (vs. 15.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1946 Search M2 employeeNumber=b'15.1' (vs. 15.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1954 Search M3 employeeNumber=b'15.1' (vs. 15.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_16 | 37.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2076 Search M1 employeeNumber=b'1.1' (vs. 1.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2082 Search M2 employeeNumber=b'1.1' (vs. 1.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2090 Search M3 employeeNumber=b'1.1' (vs. 1.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_17 | 37.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2183 Search M1 employeeNumber=b'2.2' (vs. 2.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2189 Search M2 employeeNumber=b'2.2' (vs. 2.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2197 Search M3 employeeNumber=b'2.2' (vs. 2.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_18 | 37.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2289 Search M1 employeeNumber=b'3.2' (vs. 3.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2295 Search M2 employeeNumber=b'3.2' (vs. 3.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2303 Search M3 employeeNumber=b'3.2' (vs. 3.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_19 | 38.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2405 Search M1 employeeNumber=b'4.1' (vs. 4.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2411 Search M2 employeeNumber=b'4.1' (vs. 4.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2419 Search M3 employeeNumber=b'4.1' (vs. 4.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_20 | 38.91 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2520 Search M1 employeeNumber=b'5.1' (vs. 5.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2526 Search M2 employeeNumber=b'5.1' (vs. 5.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2534 Search M3 employeeNumber=b'5.1' (vs. 5.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_21 | 38.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2635 Search M1 employeeNumber=b'6.1' (vs. 6.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2641 Search M2 employeeNumber=b'6.1' (vs. 6.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2649 Search M3 employeeNumber=b'6.1' (vs. 6.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_22 | 38.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2750 Search M1 employeeNumber=b'7.1' (vs. 7.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2756 Search M2 employeeNumber=b'7.1' (vs. 7.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2764 Search M3 employeeNumber=b'7.1' (vs. 7.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_23 | 39.65 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2873 Search M1 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2879 Search M2 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2887 Search M3 employeeNumber=b'8.2' (vs. 8.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_24 | 39.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2996 Search M1 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3002 Search M2 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3010 Search M3 employeeNumber=b'9.2' (vs. 9.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_25 | 39.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3119 Search M1 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3125 Search M2 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3133 Search M3 employeeNumber=b'10.2' (vs. 10.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_26 | 39.91 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3242 Search M1 employeeNumber=b'11.2' (vs. 11.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3248 Search M2 employeeNumber=b'11.2' (vs. 11.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3256 Search M3 employeeNumber=b'11.2' (vs. 11.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_27 | 39.67 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3365 Search M1 employeeNumber=b'12.2' (vs. 12.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3371 Search M2 employeeNumber=b'12.2' (vs. 12.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3379 Search M3 employeeNumber=b'12.2' (vs. 12.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_28 | 39.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3488 Search M1 employeeNumber=b'13.2' (vs. 13.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3494 Search M2 employeeNumber=b'13.2' (vs. 13.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3502 Search M3 employeeNumber=b'13.2' (vs. 13.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_29 | 40.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3612 Search M1 employeeNumber=b'14.2' (vs. 14.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3618 Search M2 employeeNumber=b'14.2' (vs. 14.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3626 Search M3 employeeNumber=b'14.2' (vs. 14.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_30 | 39.76 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3735 Search M1 employeeNumber=b'15.2' (vs. 15.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3741 Search M2 employeeNumber=b'15.2' (vs. 15.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3749 Search M3 employeeNumber=b'15.2' (vs. 15.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_31 | 40.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3866 Search M1 employeeNumber=b'16.1' (vs. 16.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3872 Search M2 employeeNumber=b'16.1' (vs. 16.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3880 Search M3 employeeNumber=b'16.1' (vs. 16.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_32 | 40.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3998 Search M1 employeeNumber=b'17.1' (vs. 17.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4004 Search M2 employeeNumber=b'17.1' (vs. 17.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4012 Search M3 employeeNumber=b'17.1' (vs. 17.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_33 | 40.71 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4122 Search M1 employeeNumber=b'18.1' (vs. 18.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4128 Search M2 employeeNumber=b'18.1' (vs. 18.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4136 Search M3 employeeNumber=b'18.1' (vs. 18.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_34 | 40.44 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4246 Search M1 employeeNumber=b'19.1' (vs. 19.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4252 Search M2 employeeNumber=b'19.1' (vs. 19.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4260 Search M3 employeeNumber=b'19.1' (vs. 19.1) | |||
Passed | tickets/ticket49788_test.py::test_ticket49781 | 0.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket50078_test.py::test_ticket50078 | 4.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. [32mINFO [0m lib389.topologies:topologies.py:515 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect 590d1467-9f87-4d0e-9e96-136ed67646fa / got description=None) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2195 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:2068 SUCCESS: bootstrap to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2349 SUCCESS: Agreement from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2252 SUCCESS: joined consumer from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2482 Retry: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 4637cb7a-96a7-4c27-9262-92cac2cd998d / got description=590d1467-9f87-4d0e-9e96-136ed67646fa) [32mINFO [0m lib389.replica:replica.py:2480 SUCCESS: Replication from ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-139-159.hosted.upshift.rdu2.redhat.com:39201 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket50078_test:ticket50078_test.py:31 Replication is working. [32mINFO [0m tests.tickets.ticket50078_test:ticket50078_test.py:47 Rename the test entry test_user1... [32mINFO [0m tests.tickets.ticket50078_test:ticket50078_test.py:52 Replication is working. | |||
Passed | tickets/ticket50234_test.py::test_ticket50234 | 0.42 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket548_test.py::test_ticket548_test_with_no_policy | 0.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | tickets/ticket548_test.py::test_ticket548_test_global_policy | 1.69 | |
No log output captured. | |||
Passed | tickets/ticket548_test.py::test_ticket548_test_subtree_policy | 3.28 | |
No log output captured. |