Report generated on 02-Mar-2020 at 23:15:04 by pytest-html v2.0.1
389-ds-base | 1.4.3.3-20200303gitc013a02.fc31 |
Packages | {'pytest': '5.3.5', 'py': '1.8.0', 'pluggy': '0.12.0'} |
Platform | Linux-5.3.15-300.fc31.x86_64-x86_64-with-fedora-31-Thirty_One |
Plugins | {'metadata': '1.8.0', 'html': '2.0.1'} |
Python | 3.7.6 |
cyrus-sasl | 2.1.27-2.fc31 |
nspr | 4.24.0-1.fc31 |
nss | 3.49.2-1.fc31 |
openldap | 2.4.47-3.fc31 |
1919 tests ran in 14015.10 seconds.
(Un)check the boxes to filter the results.
1861 passed, 13 skipped, 32 failed, 11 errors, 20 expected failures, 6 unexpected passesResult | Test | Duration | Links |
---|---|---|---|
No results found. Try to check the filters | |||
Error | suites/ds_tools/replcheck_test.py::test_state::setup | 77.55 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-137-0.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 | |||
Error | suites/ds_tools/replcheck_test.py::test_check_ruv::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_missing_entries::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_tombstones::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_conflict_entries::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_inconsistencies::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_suffix_exists::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_check_missing_tombstones::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/ds_tools/replcheck_test.py::test_dsreplcheck_with_password_file::setup | 0.00 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4088150> @pytest.fixture(scope="module") def topo_tls_ldapi(topo): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth. Also, setup ldapi and export DB """ m1 = topo.ms["master1"] m2 = topo.ms["master2"] # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info("Export LDAPTLS_CACERTDIR env variable for ds-replcheck") os.environ["LDAPTLS_CACERTDIR"] = m1.get_ssca_dir() for inst in topo: inst.config.set('nsslapd-ldapilisten', 'on') inst.config.set('nsslapd-ldapifilepath', '/var/run/slapd-{}.socket'.format(inst.serverid)) inst.restart() > repl.test_replication(m1, m2) suites/ds_tools/replcheck_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2d435a8d0> from_instance = <lib389.DirSrv object at 0x7fc2d3992a90> to_instance = <lib389.DirSrv object at 0x7fc2d539f790>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Error | suites/replication/tls_client_auth_repl_test.py::test_ssl_transport::setup | 61.30 | |
topo_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c3282850> @pytest.fixture(scope="module") def tls_client_auth(topo_m2): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth """ m1 = topo_m2.ms['master1'] m2 = topo_m2.ms['master2'] if ds_is_older('1.4.0.6'): transport = 'SSL' else: transport = 'LDAPS' # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo_m2] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', transport), ('nsDS5ReplicaPort', str(m2.sslport)), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', transport), ('nsDS5ReplicaPort', str(m1.sslport)), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') > repl.test_replication_topology(topo_m2) suites/replication/tls_client_auth_repl_test.py:90: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2442: in test_replication_topology self.test_replication(a, b, timeout) /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2c2292bd0> from_instance = <lib389.DirSrv object at 0x7fc2c20b8210> to_instance = <lib389.DirSrv object at 0x7fc2c21283d0>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63702 is working | |||
Error | suites/replication/tls_client_auth_repl_test.py::test_extract_pemfiles::setup | 0.00 | |
topo_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c3282850> @pytest.fixture(scope="module") def tls_client_auth(topo_m2): """Enable TLS on both masters and reconfigure both agreements to use TLS Client auth """ m1 = topo_m2.ms['master1'] m2 = topo_m2.ms['master2'] if ds_is_older('1.4.0.6'): transport = 'SSL' else: transport = 'LDAPS' # Create the certmap before we restart for enable_tls cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) # We need to configure the same maps for both .... certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) [i.enable_tls() for i in topo_m2] # Create the replication dns services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) # Check the replication is "done". repl = ReplicationManager(DEFAULT_SUFFIX) repl.wait_for_replication(m1, m2) # Now change the auth type replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', transport), ('nsDS5ReplicaPort', str(m2.sslport)), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', transport), ('nsDS5ReplicaPort', str(m1.sslport)), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') > repl.test_replication_topology(topo_m2) suites/replication/tls_client_auth_repl_test.py:90: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/replica.py:2442: in test_replication_topology self.test_replication(a, b, timeout) /usr/local/lib/python3.7/site-packages/lib389/replica.py:2428: in test_replication self.wait_for_replication(from_instance, to_instance, timeout) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicationManager object at 0x7fc2c2292bd0> from_instance = <lib389.DirSrv object at 0x7fc2c20b8210> to_instance = <lib389.DirSrv object at 0x7fc2c21283d0>, timeout = 20 def wait_for_replication(self, from_instance, to_instance, timeout=20): """Wait for a replication event to occur from instance to instance. This shows some point of synchronisation has occured. :param from_instance: The instance whos state we we want to check from :type from_instance: lib389.DirSrv :param to_instance: The instance whos state we want to check matches from. :type to_instance: lib389.DirSrv :param timeout: Fail after timeout seconds. :type timeout: int """ # Touch something then wait_for_replication. from_groups = Groups(from_instance, basedn=self._suffix, rdn=None) to_groups = Groups(to_instance, basedn=self._suffix, rdn=None) from_group = from_groups.get('replication_managers') to_group = to_groups.get('replication_managers') change = str(uuid.uuid4()) from_group.replace('description', change) for i in range(0, timeout): desc = to_group.get_attr_val_utf8('description') if change == desc: self._log.info("SUCCESS: Replication from %s to %s is working" % (from_instance.ldapuri, to_instance.ldapuri)) return True time.sleep(1) > raise Exception("Replication did not sync in time!") E Exception: Replication did not sync in time! /usr/local/lib/python3.7/site-packages/lib389/replica.py:2412: Exception | |||
Failed | suites/basic/basic_test.py::test_dscreate_ldapi | 0.00 | |
dscreate_long_instance = <lib389.DirSrv object at 0x7fc2d40b7b50> @pytest.mark.skipif(not get_user_is_root() or not default_paths.perl_enabled or ds_is_older('1.4.2.0'), reason="This test is only required with new admin cli, and requires root.") @pytest.mark.bz1748016 @pytest.mark.ds50581 def test_dscreate_ldapi(dscreate_long_instance): """Test that an instance with a long name can handle ldapi connection using a long socket name :id: 5d72d955-aff8-4741-8c9a-32c1c707cf1f :setup: None :steps: 1. create an instance with a long serverId name, that open a ldapi connection 2. Connect with ldapi, that hit 50581 and crash the instance :expectedresults: 1. Should succeeds 2. Should succeeds """ > root_dse = RootDSE(dscreate_ldapi_instance) E NameError: name 'dscreate_ldapi_instance' is not defined suites/basic/basic_test.py:1378: NameError -----------------------------Captured stdout setup------------------------------ Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef | |||
Failed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-off-UNWILLING_TO_PERFORM] | 2.24 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2d9c6d0> create_user = None, password_policy = None, subtree_pwchange = 'on' user_pwchange = 'off', exception = <class 'ldap.UNWILLING_TO_PERFORM'> @pytest.mark.parametrize('subtree_pwchange,user_pwchange,exception', [('on', 'off', ldap.UNWILLING_TO_PERFORM), ('off', 'off', ldap.UNWILLING_TO_PERFORM), ('off', 'on', False), ('on', 'on', False)]) def test_change_pwd(topology_st, create_user, password_policy, subtree_pwchange, user_pwchange, exception): """Verify that 'passwordChange' attr works as expected User should have a priority over a subtree. :id: 2c884432-2ba1-4662-8e5d-2cd49f77e5fa :parametrized: yes :setup: Standalone instance, a test user, password policy entries for a user and a subtree :steps: 1. Set passwordChange on the user and the subtree to various combinations 2. Bind as test user 3. Try to change password 4. Clean up - change the password to default while bound as DM :expectedresults: 1. passwordChange should be successfully set 2. Bind should be successful 3. Subtree/User passwordChange - result, accordingly: off/on, on/on - success; on/off, off/off - UNWILLING_TO_PERFORM 4. Operation should be successful """ users = UserAccounts(topology_st.standalone, OU_PEOPLE, rdn=None) user = users.get(TEST_USER_NAME) log.info('Set passwordChange to "{}" - {}'.format(subtree_pwchange, OU_PEOPLE)) pwp = PwPolicyManager(topology_st.standalone) subtree_policy = pwp.get_pwpolicy_entry(OU_PEOPLE) subtree_policy.set('passwordChange', subtree_pwchange) time.sleep(1) log.info('Set passwordChange to "{}" - {}'.format(user_pwchange, TEST_USER_DN)) pwp2 = PwPolicyManager(topology_st.standalone) user_policy = pwp2.get_pwpolicy_entry(TEST_USER_DN) user_policy.set('passwordChange', user_pwchange) user_policy.set('passwordExp', 'on') time.sleep(1) try: log.info('Bind as user and modify userPassword') > user.rebind(TEST_USER_PWD) suites/password/pwdPolicy_attribute_test.py:166: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.idm.user.UserAccount object at 0x7fc2c26d8950> password = 'simplepaged_test' def rebind(self, password): """Rebind on the same connection :param password: An entry password :type password: str """ > self._instance.simple_bind_s(self.dn, password, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/idm/account.py:215: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('uid=simplepaged_test,ou=People,dc=example,dc=com', 'simplepaged_test') kwargs = {} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3a33a10> who = 'uid=simplepaged_test,ou=People,dc=example,dc=com' cred = 'simplepaged_test', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (45,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3a33a10>, msgid = 45, all = 1 timeout = -1, resp_ctrl_classes = None def result3(self,msgid=ldap.RES_ANY,all=1,timeout=None,resp_ctrl_classes=None): resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4( msgid,all,timeout, add_ctrls=0,add_intermediates=0,add_extop=0, > resp_ctrl_classes=resp_ctrl_classes ) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (45, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3a33a10>, msgid = 45, all = 1 timeout = -1, add_ctrls = 0, add_intermediates = 0, add_extop = 0 resp_ctrl_classes = None def result4(self,msgid=ldap.RES_ANY,all=1,timeout=None,add_ctrls=0,add_intermediates=0,add_extop=0,resp_ctrl_classes=None): if timeout is None: timeout = self.timeout > ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7fc2c2e46450>, 45, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3a33a10> func = <built-in method result4 of LDAP object at 0x7fc2c2e46450> args = (45, 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) if __debug__ and self._trace_level>=2: if func.__name__!="unbind_ext": diagnostic_message_success = self._l.get_option(ldap.OPT_DIAGNOSTIC_MESSAGE) finally: self._ldap_object_lock.release() except LDAPError as e: exc_type,exc_value,exc_traceback = sys.exc_info() try: if 'info' not in e.args[0] and 'errno' in e.args[0]: e.args[0]['info'] = strerror(e.args[0]['errno']) except IndexError: pass if __debug__ and self._trace_level>=2: self._trace_file.write('=> LDAPError - %s: %s\n' % (e.__class__.__name__,str(e))) try: > reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.INVALID_CREDENTIALS'> exc_value = INVALID_CREDENTIALS({'desc': 'Invalid credentials', 'info': 'Invalid credentials'}) exc_traceback = <traceback object at 0x7fc2c2fb4b40> def reraise(exc_type, exc_value, exc_traceback): """Re-raise an exception given information from sys.exc_info() Note that unlike six.reraise, this does not support replacing the traceback. All arguments must come from a single sys.exc_info() call. """ # In Python 3, all exception info is contained in one object. > raise exc_value /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3a33a10> func = <built-in method result4 of LDAP object at 0x7fc2c2e46450> args = (45, 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.INVALID_CREDENTIALS: {'desc': 'Invalid credentials', 'info': 'Invalid credentials'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: INVALID_CREDENTIALS During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2d9c6d0> create_user = None, password_policy = None, subtree_pwchange = 'on' user_pwchange = 'off', exception = <class 'ldap.UNWILLING_TO_PERFORM'> @pytest.mark.parametrize('subtree_pwchange,user_pwchange,exception', [('on', 'off', ldap.UNWILLING_TO_PERFORM), ('off', 'off', ldap.UNWILLING_TO_PERFORM), ('off', 'on', False), ('on', 'on', False)]) def test_change_pwd(topology_st, create_user, password_policy, subtree_pwchange, user_pwchange, exception): """Verify that 'passwordChange' attr works as expected User should have a priority over a subtree. :id: 2c884432-2ba1-4662-8e5d-2cd49f77e5fa :parametrized: yes :setup: Standalone instance, a test user, password policy entries for a user and a subtree :steps: 1. Set passwordChange on the user and the subtree to various combinations 2. Bind as test user 3. Try to change password 4. Clean up - change the password to default while bound as DM :expectedresults: 1. passwordChange should be successfully set 2. Bind should be successful 3. Subtree/User passwordChange - result, accordingly: off/on, on/on - success; on/off, off/off - UNWILLING_TO_PERFORM 4. Operation should be successful """ users = UserAccounts(topology_st.standalone, OU_PEOPLE, rdn=None) user = users.get(TEST_USER_NAME) log.info('Set passwordChange to "{}" - {}'.format(subtree_pwchange, OU_PEOPLE)) pwp = PwPolicyManager(topology_st.standalone) subtree_policy = pwp.get_pwpolicy_entry(OU_PEOPLE) subtree_policy.set('passwordChange', subtree_pwchange) time.sleep(1) log.info('Set passwordChange to "{}" - {}'.format(user_pwchange, TEST_USER_DN)) pwp2 = PwPolicyManager(topology_st.standalone) user_policy = pwp2.get_pwpolicy_entry(TEST_USER_DN) user_policy.set('passwordChange', user_pwchange) user_policy.set('passwordExp', 'on') time.sleep(1) try: log.info('Bind as user and modify userPassword') user.rebind(TEST_USER_PWD) if exception: with pytest.raises(exception): user.reset_password('new_pass') else: user.reset_password('new_pass') except ldap.LDAPError as e: log.error('Failed to change userpassword for {}: error {}'.format( > TEST_USER_DN, e.message['info'])) E AttributeError: 'INVALID_CREDENTIALS' object has no attribute 'message' suites/password/pwdPolicy_attribute_test.py:174: AttributeError -------------------------------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:149 Set passwordChange to "on" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:156 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:165 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:177 Bind as DM | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_day_of_week | 0.01 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2268750> rootdn_setup = None, rootdn_cleanup = None, timeout = 5 def test_rootdn_access_day_of_week(topology_st, rootdn_setup, rootdn_cleanup, timeout=5): """Test the days of week feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e1 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set the deny days 2. Bind as Root DN 3. Set the allow days 4. Bind as Root DN :expectedresults: 1. Success 2. Should fail 3. Success 4. Success """ log.info('Running test_rootdn_access_day_of_week...') dm = DirectoryManager(topology_st.standalone) days = ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat') day = int(time.strftime("%w", time.gmtime())) if day == 6: # Handle the roll over from Saturday into Sunday deny_days = days[1] + ', ' + days[2] allow_days = days[6] + ',' + days[0] elif day > 3: deny_days = days[0] + ', ' + days[1] allow_days = days[day] + ',' + days[day - 1] else: deny_days = days[4] + ',' + days[5] allow_days = days[day] + ',' + days[day + 1] log.info('Today: ' + days[day]) log.info('Allowed days: ' + allow_days) log.info('Deny days: ' + deny_days) # Set the deny days plugin.set_days_allowed(deny_days) attr_updated = 0 for i in range(0, timeout): if (str(plugin.get_days_allowed()) == deny_days): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-days-allowed was not updated") # Bind as Root DN - should fail with pytest.raises(ldap.UNWILLING_TO_PERFORM): dm.bind() # Set the allow days plugin.set_days_allowed(allow_days) attr_updated = 0 for i in range(0, timeout): if (str(plugin.get_days_allowed()) == allow_days): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-days-allowed was not updated") # Bind as Root DN - should succeed > dm.bind() suites/plugins/rootdn_plugin_test.py:230: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/idm/directorymanager.py:46: in bind return super(DirectoryManager, self).bind(password, *args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/idm/account.py:207: in bind inst_clone.open(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1079: in open raise e /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1072: in open self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: in simple_bind_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c21f1210> func = <built-in method result4 of LDAP object at 0x7fc2c222d630> args = (1, 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:176 Running test_rootdn_access_day_of_week... [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:193 Today: Tue [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:194 Allowed days: Tue,Wed [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:195 Deny days: Thu,Fri | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2268750> rootdn_setup = None, rootdn_cleanup = None, timeout = 5 def test_rootdn_access_denied_ip(topology_st, rootdn_setup, rootdn_cleanup, timeout=5): """Test denied IP feature - we can just test denying 127.0.0.1 :id: a0ef30e5-538b-46fa-9762-01a4435a15e2 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-ip to '127.0.0.1' and '::1' 2. Bind as Root DN 3. Change the denied IP so root DN succeeds 4. Bind as Root DN :expectedresults: 1. Success 2. Should fail 3. Success 4. Success """ log.info('Running test_rootdn_access_denied_ip...') plugin.add_deny_ip('127.0.0.1') plugin.add_deny_ip('::1') attr_updated = 0 for i in range(0, timeout): if ('127.0.0.1' in str(plugin.get_deny_ip())): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-deny-ip was not updated") # Bind as Root DN - should fail uri = 'ldap://{}:{}'.format('127.0.0.1', topology_st.standalone.port) with pytest.raises(ldap.UNWILLING_TO_PERFORM): rootdn_bind(topology_st.standalone, uri=uri) # Change the denied IP so root DN succeeds plugin.apply_mods([(ldap.MOD_REPLACE, 'rootdn-deny-ip', '255.255.255.255')]) attr_updated = 0 for i in range(0, timeout): if ('255.255.255.255' in str(plugin.get_deny_ip())): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-deny-ip was not updated") # Bind as Root DN - should succeed > rootdn_bind(topology_st.standalone, uri=uri) suites/plugins/rootdn_plugin_test.py:285: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/plugins/rootdn_plugin_test.py:81: in rootdn_bind newinst.open(uri=uri, connOnly=True) # This binds as root dn /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1079: in open raise e /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1072: in open self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: in simple_bind_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c029cfd0> func = <built-in method result4 of LDAP object at 0x7fc2c3944870> args = (1, 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:250 Running test_rootdn_access_denied_ip... | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_host | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2268750> rootdn_setup = None, rootdn_cleanup = None, timeout = 5 def test_rootdn_access_denied_host(topology_st, rootdn_setup, rootdn_cleanup, timeout=5): """Test denied Host feature - we can just test denying localhost :id: a0ef30e5-538b-46fa-9762-01a4435a15e3 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-host to hostname (localhost if not accessable) 2. Bind as Root DN 3. Change the denied host so root DN succeeds 4. Bind as Root DN :expectedresults: 1. Success 2. Should fail 3. Success 4. Success """ log.info('Running test_rootdn_access_denied_host...') hostname = socket.gethostname() plugin.add_deny_host(hostname) if localhost != hostname: plugin.add_deny_host(localhost) attr_updated = 0 for i in range(0, timeout): if (str(plugin.get_deny_host()) == hostname) or (str(plugin.get_deny_host()) == localhost): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-deny-host was not updated") # Bind as Root DN - should fail uri = 'ldap://{}:{}'.format(localhost, topology_st.standalone.port) with pytest.raises(ldap.UNWILLING_TO_PERFORM): rootdn_bind(topology_st.standalone, uri=uri) # Change the denied host so root DN bind succeeds rand_host = 'i.dont.exist.{}'.format(uuid.uuid4()) plugin.apply_mods([(ldap.MOD_REPLACE, 'rootdn-deny-host', rand_host)]) attr_updated = 0 for i in range(0, timeout): if (plugin.get_deny_host() == rand_host): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-deny-host was not updated") # Bind as Root DN - should succeed > rootdn_bind(topology_st.standalone, uri=uri) suites/plugins/rootdn_plugin_test.py:343: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/plugins/rootdn_plugin_test.py:81: in rootdn_bind newinst.open(uri=uri, connOnly=True) # This binds as root dn /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1079: in open raise e /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1072: in open self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: in simple_bind_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c26d8810> func = <built-in method result4 of LDAP object at 0x7fc2c1de0630> args = (1, 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:305 Running test_rootdn_access_denied_host... | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2268750> rootdn_setup = None, rootdn_cleanup = None, timeout = 5 def test_rootdn_access_allowed_ip(topology_st, rootdn_setup, rootdn_cleanup, timeout=5): """Test allowed ip feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e4 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed ip to 255.255.255.255 - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN :expectedresults: 1. Success 2. Should fail 3. Success 4. Success """ log.info('Running test_rootdn_access_allowed_ip...') # Set allowed ip to 255.255.255.255 - blocks the Root DN plugin.add_allow_ip('255.255.255.255') attr_updated = 0 for i in range(0, timeout): if ('255.255.255.255' in plugin.get_allow_ip()): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-allow-ip was not updated") # Bind as Root DN - should fail uri = 'ldap://{}:{}'.format(localhost, topology_st.standalone.port) with pytest.raises(ldap.UNWILLING_TO_PERFORM): rootdn_bind(topology_st.standalone, uri=uri) # Allow localhost plugin.add_allow_ip('127.0.0.1') plugin.add_allow_ip('::1') attr_updated = 0 for i in range(0, timeout): if ('127.0.0.1' in plugin.get_allow_ip()): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-allow-ip was not updated") # Bind as Root DN - should succeed > rootdn_bind(topology_st.standalone, uri=uri) suites/plugins/rootdn_plugin_test.py:400: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/plugins/rootdn_plugin_test.py:81: in rootdn_bind newinst.open(uri=uri, connOnly=True) # This binds as root dn /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1079: in open raise e /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1072: in open self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: in simple_bind_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c2967850> func = <built-in method result4 of LDAP object at 0x7fc2c21a4f90> args = (1, 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:363 Running test_rootdn_access_allowed_ip... | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_host | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c2268750> rootdn_setup = None, rootdn_cleanup = None, timeout = 5 def test_rootdn_access_allowed_host(topology_st, rootdn_setup, rootdn_cleanup, timeout=5): """Test allowed host feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e5 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed host to an unknown host - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN :expectedresults: 1. Success 2. Should fail 3. Success 4. Success """ log.info('Running test_rootdn_access_allowed_host...') # Set allowed host to an unknown host - blocks the Root DN rand_host = 'i.dont.exist.{}'.format(uuid.uuid4()) plugin.add_allow_host(rand_host) attr_updated = 0 for i in range(0, timeout): if (str(plugin.get_allow_host()) == rand_host): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-allow-host was not updated") # Bind as Root DN - should fail uri = 'ldap://{}:{}'.format(localhost, topology_st.standalone.port) with pytest.raises(ldap.UNWILLING_TO_PERFORM): rootdn_bind(topology_st.standalone, uri=uri) # Allow localhost plugin.remove_all_allow_host() plugin.add_allow_host(localhost) if hostname != localhost: plugin.add_allow_host(hostname) attr_updated = 0 for i in range(0, timeout): if (str(plugin.get_allow_host()) == hostname) or (str(plugin.get_allow_host()) == localhost): attr_updated = 1 break else: time.sleep(.5) if not attr_updated : raise Exception ("rootdn-allow-host was not updated") # Bind as Root DN - should succeed > rootdn_bind(topology_st.standalone, uri=uri) suites/plugins/rootdn_plugin_test.py:460: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/plugins/rootdn_plugin_test.py:81: in rootdn_bind newinst.open(uri=uri, connOnly=True) # This binds as root dn /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1079: in open raise e /usr/local/lib/python3.7/site-packages/lib389/__init__.py:1072: in open self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:446: in simple_bind_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c3933310> func = <built-in method result4 of LDAP object at 0x7fc2c2056b70> args = (1, 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: UNWILLING_TO_PERFORM -------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:420 Running test_rootdn_access_allowed_host... | |||
Failed | suites/replication/cleanallruv_test.py::test_clean_shutdown_crash | 26.58 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c2085210> @pytest.mark.bz1466441 @pytest.mark.ds50370 def test_clean_shutdown_crash(topology_m2): """Check that server didn't crash after shutdown when running CleanAllRUV task :id: c34d0b40-3c3e-4f53-8656-5e4c2a310aaf :setup: Replication setup with two masters :steps: 1. Enable TLS on both masters 2. Reconfigure both agreements to use TLS Client auth 3. Stop master2 4. Run the CleanAllRUV task 5. Restart master1 6. Check if master1 didn't crash 7. Restart master1 again 8. Check if master1 didn't crash :expectedresults: 1. Success 2. Success 3. Success 4. Success 5. Success 6. Success 7. Success 8. Success """ m1 = topology_m2.ms["master1"] m2 = topology_m2.ms["master2"] repl = ReplicationManager(DEFAULT_SUFFIX) cm_m1 = CertmapLegacy(m1) cm_m2 = CertmapLegacy(m2) certmaps = cm_m1.list() certmaps['default']['DNComps'] = None certmaps['default']['CmapLdapAttr'] = 'nsCertSubjectDN' cm_m1.set(certmaps) cm_m2.set(certmaps) log.info('Enabling TLS') [i.enable_tls() for i in topology_m2] log.info('Creating replication dns') services = ServiceAccounts(m1, DEFAULT_SUFFIX) repl_m1 = services.get('%s:%s' % (m1.host, m1.sslport)) repl_m1.set('nsCertSubjectDN', m1.get_server_tls_subject()) repl_m2 = services.get('%s:%s' % (m2.host, m2.sslport)) repl_m2.set('nsCertSubjectDN', m2.get_server_tls_subject()) log.info('Changing auth type') replica_m1 = Replicas(m1).get(DEFAULT_SUFFIX) agmt_m1 = replica_m1.get_agreements().list()[0] agmt_m1.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m2.sslport), ) agmt_m1.remove_all('nsDS5ReplicaBindDN') replica_m2 = Replicas(m2).get(DEFAULT_SUFFIX) agmt_m2 = replica_m2.get_agreements().list()[0] agmt_m2.replace_many( ('nsDS5ReplicaBindMethod', 'SSLCLIENTAUTH'), ('nsDS5ReplicaTransportInfo', 'SSL'), ('nsDS5ReplicaPort', '%s' % m1.sslport), ) agmt_m2.remove_all('nsDS5ReplicaBindDN') log.info('Stopping master2') m2.stop() log.info('Run the cleanAllRUV task') cruv_task = CleanAllRUVTask(m1) cruv_task.create(properties={ 'replica-id': repl.get_rid(m1), 'replica-base-dn': DEFAULT_SUFFIX, 'replica-force-cleaning': 'no', > 'replica-certify-all': 'yes' }) suites/replication/cleanallruv_test.py:810: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/tasks.py:267: in create return super(CleanAllRUVTask, self).create(rdn, properties, basedn) /usr/local/lib/python3.7/site-packages/lib389/tasks.py:104: in create return super(Task, self).create(rdn, properties, basedn) /usr/local/lib/python3.7/site-packages/lib389/_mapped_object.py:952: in create return self._create(rdn, properties, basedn, ensure=False) /usr/local/lib/python3.7/site-packages/lib389/_mapped_object.py:927: in _create self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:176: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:416: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c2085c50> func = <built-in method result4 of LDAP object at 0x7fc2c2067030> args = (16, 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: SERVER_DOWN -----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:769 Enabling TLS [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:772 Creating replication dns [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:780 Changing auth type [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:801 Stopping master2 [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:804 Run the cleanAllRUV task | |||
Failed | suites/sasl/regression_test.py::test_openldap_no_nss_crypto | 30.64 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c221a090> @pytest.mark.ds47536 def test_openldap_no_nss_crypto(topology_m2): """Check that we allow usage of OpenLDAP libraries that don't use NSS for crypto :id: 0a622f3d-8ba5-4df2-a1de-1fb2237da40a :setup: Replication with two masters: master_1 ----- startTLS -----> master_2; master_1 <-- TLS_clientAuth -- master_2; nsslapd-extract-pemfiles set to 'on' on both masters without specifying cert names :steps: 1. Add 5 users to master 1 and 2 2. Check that the users were successfully replicated 3. Relocate PEM files on master 1 4. Check PEM files in master 1 config directory 5. Add 5 users more to master 1 and 2 6. Check that the users were successfully replicated 7. Export userRoot on master 1 :expectedresults: 1. Users should be successfully added 2. Users should be successfully replicated 3. Operation should be successful 4. PEM files should be found 5. Users should be successfully added 6. Users should be successfully replicated 7. Operation should be successful """ log.info("Ticket 47536 - Allow usage of OpenLDAP libraries that don't use NSS for crypto") m1 = topology_m2.ms["master1"] m2 = topology_m2.ms["master2"] [i.enable_tls() for i in topology_m2] repl = ReplicationManager(DEFAULT_SUFFIX) repl.test_replication(m1, m2) add_entry(m1, 'master1', 'uid=m1user', 0, 5) add_entry(m2, 'master2', 'uid=m2user', 0, 5) repl.wait_for_replication(m1, m2) repl.wait_for_replication(m2, m1) log.info('##### Searching for entries on master1...') entries = m1.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(uid=*)') assert 10 == len(entries) log.info('##### Searching for entries on master2...') entries = m2.search_s(DEFAULT_SUFFIX, ldap.SCOPE_SUBTREE, '(uid=*)') assert 10 == len(entries) > relocate_pem_files(topology_m2) suites/sasl/regression_test.py:155: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/sasl/regression_test.py:103: in relocate_pem_files check_pems(m1confdir, mycacert, myservercert, myserverkey, "") _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ confdir = '/etc/dirsrv/slapd-master1', mycacert = 'MyCA' myservercert = 'MyServerCert1', myserverkey = 'MyServerKey1', notexist = '' def check_pems(confdir, mycacert, myservercert, myserverkey, notexist): log.info("\n######################### Check PEM files (%s, %s, %s)%s in %s ######################\n" % (mycacert, myservercert, myserverkey, notexist, confdir)) global cacert cacert = '%s/%s.pem' % (confdir, mycacert) if os.path.isfile(cacert): if notexist == "": log.info('%s is successfully generated.' % cacert) else: log.info('%s is incorrecly generated.' % cacert) assert False else: if notexist == "": log.fatal('%s is not generated.' % cacert) > assert False E assert False suites/sasl/regression_test.py:61: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63702 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-137-0.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:100 ##### restart master1 [32mINFO [0m tests.suites.sasl.regression_test:regression_test.py:49 ######################### Check PEM files (MyCA, MyServerCert1, MyServerKey1) in /etc/dirsrv/slapd-master1 ###################### [31mCRITICAL[0m tests.suites.sasl.regression_test:regression_test.py:60 /etc/dirsrv/slapd-master1/MyCA.pem is not generated. | |||
Failed | tickets/ticket47781_test.py::test_ticket47781 | 3.61 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c1e8ac10> 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 0x7fc2c1e8a2d0> 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.7/site-packages/lib389/tasks.py:443: ValueError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:538 Export task export_03022020_214956 for file /tmp/export.ldif completed successfully | |||
Failed | tickets/ticket47973_test.py::test_ticket47973_case | 5.06 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c28d99d0> 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:1139 Schema Reload task (task-03022020_215910) 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 | 8.58 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c14d4e10> 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.7/site-packages/lib389/__init__.py:1135: in start "dirsrv@%s" % self.serverid]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ popenargs = (['systemctl', 'start', 'dirsrv@master1'],), kwargs = {} retcode = 1, cmd = ['systemctl', 'start', 'dirsrv@master1'] def check_call(*popenargs, **kwargs): """Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ retcode = call(*popenargs, **kwargs) if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd) E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1. /usr/lib64/python3.7/subprocess.py:363: CalledProcessError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stderr call------------------------------ Job for dirsrv@master1.service failed because the control process exited with error code. See "systemctl status dirsrv@master1.service" and "journalctl -xe" for details. -------------------------------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 0x7fc2c14d4e10> 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.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:631: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:604: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c1f6d090> func = <built-in method result4 of LDAP object at 0x7fc2c0d72a80> args = (28, 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c14d4e10> 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.7/site-packages/lib389/schema.py:605: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:854: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:848: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/local/lib/python3.7/site-packages/lib389/__init__.py:148: in inner objtype, data = f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:740: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:744: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c153c5d0> func = <built-in method result4 of LDAP object at 0x7fc2c0d65ba0> args = (64, 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c14d4e10> 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.7/site-packages/lib389/agreement.py:899: in list replica_entries = self.conn.replica.list(suffix) /usr/local/lib/python3.7/site-packages/lib389/replica.py:177: in list ents = self.conn.search_s(base, ldap.SCOPE_SUBTREE, filtr) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:854: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:847: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:843: in search_ext timeout,sizelimit, /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c1f6d090> func = <built-in method search_ext of LDAP object at 0x7fc2c0d72a80> 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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 0x7fc2c14d4e10> 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.7/site-packages/lib389/schema.py:605: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:854: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:847: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:843: in search_ext timeout,sizelimit, /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c153c5d0> func = <built-in method search_ext of LDAP object at 0x7fc2c0d65ba0> 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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 0x7fc2c14d4e10> 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.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:631: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:603: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:600: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c153c5d0> func = <built-in method modify_ext of LDAP object at 0x7fc2c0d65ba0> args = ('cn=other_entry0,dc=example,dc=com', [(2, 'telephonenumber', b'152')], 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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 0x7fc2c14d4e10> 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.7/site-packages/lib389/schema.py:605: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:854: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:847: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:843: in search_ext timeout,sizelimit, /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c153c5d0> func = <built-in method search_ext of LDAP object at 0x7fc2c0d65ba0> 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: {'desc': "Can't contact LDAP server"} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: 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.53 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c214ad10> 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.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:854: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:848: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/local/lib/python3.7/site-packages/lib389/__init__.py:148: in inner objtype, data = f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:740: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:744: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c1335ad0> func = <built-in method result4 of LDAP object at 0x7fc2c09ada20> 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: {'desc': 'No such object'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: NO_SUCH_OBJECT -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:277 Ticket 48005 usn test... | |||
Failed | tickets/ticket48194_test.py::test_run_0 | 5.32 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c153f7d0> def test_run_0(topology_st): """ Check nsSSL3Ciphers: +all All ciphers are enabled except null. Note: allowWeakCipher: on """ _header(topology_st, 'Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', b'64')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.restart(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', True) /export/tests/tickets/ticket48194_test.py:134: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c153f7d0> cipher = 'DES-CBC3-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 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, (NONE), Cipher is (NONE)\n' | |||
Failed | tickets/ticket48194_test.py::test_run_2 | 6.54 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c153f7d0> 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 0x7fc2c153f7d0> 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_9 | 7.34 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c153f7d0> def test_run_9(topology_st): """ Check no nsSSL3Ciphers Default ciphers are enabled. allowWeakCipher: on nsslapd-errorlog-level: 0 """ _header(topology_st, 'Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None), (ldap.MOD_REPLACE, 'allowWeakCipher', b'on')]) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_8' % (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', True) /export/tests/tickets/ticket48194_test.py:323: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c153f7d0> cipher = 'DES-CBC3-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 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, (NONE), Cipher is (NONE)\n' | |||
Failed | tickets/ticket48226_test.py::test_ticket48226_set_purgedelay | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c092c510> def test_ticket48226_set_purgedelay(topology_m2): args = {REPLICA_PURGE_DELAY: '5', REPLICA_PURGE_INTERVAL: '5'} try: > topology_m2.ms["master1"].replica.setProperties(DEFAULT_SUFFIX, None, None, args) /export/tests/tickets/ticket48226_test.py:27: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicaLegacy object at 0x7fc2c09a39d0> suffix = 'dc=example,dc=com', replica_dn = None, replica_entry = None properties = {'ReplicaPurgeDelay': '5', 'ReplicaTombstonePurgeInterval': '5'} def setProperties(self, suffix=None, replica_dn=None, replica_entry=None, properties=None): ''' Set the properties of the replica. If an 'replica_entry' (Entry) is provided, it updates the entry, else it updates the entry on the server. If the 'replica_dn' is provided it retrieves the entry using it, else it retrieve the replica using the 'suffix'. @param suffix : suffix stored in that replica (online update) @param replica_dn: DN of the replica (online update) @param replica_entry: Entry of a replica (offline update) @param properties: dictionary of properties Supported properties are: REPLICA_SUFFIX REPLICA_ID REPLICA_TYPE REPLICA_BINDDN REPLICA_PURGE_DELAY REPLICA_PRECISE_PURGING REPLICA_REFERRAL REPLICA_FLAGS @return None @raise ValueError: if unknown properties ValueError: if invalid replica_entry ValueError: if replica_dn or suffix are not associated to a replica ''' # No properties provided if len(properties) == 0: return # check that the given properties are valid for prop in properties: # skip the prefix to add/del value if not inProperties(prop, REPLICA_PROPNAME_TO_ATTRNAME): raise ValueError("unknown property: %s" % prop) else: self.log.debug("setProperties: %s:%s", prop, properties[prop]) # At least we need to have suffix/replica_dn/replica_entry if not suffix and not replica_dn and not replica_entry: raise InvalidArgumentError("suffix and replica_dn and replica_" + "entry are missing") # the caller provides a set of properties to set into a replica entry if replica_entry: if not isinstance(replica_entry, Entry): raise ValueError("invalid instance of the replica_entry") # that is fine, now set the values for prop in properties: val = rawProperty(prop) # for Entry update it is a replace replica_entry.update({REPLICA_PROPNAME_TO_ATTRNAME[val]: properties[prop]}) return # If it provides the suffix or the replicaDN, replica.list will # return the appropriate entry ents = self.conn.replica.list(suffix=suffix, replica_dn=replica_dn) if len(ents) != 1: if replica_dn: raise ValueError("invalid replica DN: %s" % replica_dn) else: raise ValueError("invalid suffix: %s" % suffix) # build the MODS mods = [] for prop in properties: # take the operation type from the property name val = rawProperty(prop) if str(prop).startswith('+'): op = ldap.MOD_ADD elif str(prop).startswith('-'): op = ldap.MOD_DELETE else: op = ldap.MOD_REPLACE mods.append((op, REPLICA_PROPNAME_TO_ATTRNAME[val], properties[prop])) # that is fine now to apply the MOD > self.conn.modify_s(ents[0].dn, mods) /usr/local/lib/python3.7/site-packages/lib389/replica.py:269: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')]) kwargs = {} c_stack = [FrameInfo(frame=<frame at 0x5584eb5e5af0, file '/usr/local/lib/python3.7/site-packages/lib389/__init__.py', line 180,..., code_context=[' firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,\n'], index=0), ...] frame = FrameInfo(frame=<frame at 0x5584ec2d2170, file '/usr/local/lib/python3.7/site-packages/lib389/replica.py', line 269, c...ca.py', lineno=269, function='setProperties', code_context=[' self.conn.modify_s(ents[0].dn, mods)\n'], index=0) def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c09be1d0> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] def modify_s(self,dn,modlist): > return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:631: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c09be1d0> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] serverctrls = None, clientctrls = None def modify_ext_s(self,dn,modlist,serverctrls=None,clientctrls=None): > msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:603: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c09be1d0> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] serverctrls = None, clientctrls = None def modify_ext(self,dn,modlist,serverctrls=None,clientctrls=None): """ modify_ext(dn, modlist[,serverctrls=None[,clientctrls=None]]) -> int """ if PY2: dn = self._bytesify_input('dn', dn) modlist = self._bytesify_modlist('modlist', modlist, with_opcode=True) > return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:600: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method modify_ext of LDAP object at 0x7fc2c09a0690>, 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name in [ 'add_s', 'bind_s', 'delete_s', 'modify_s', 'modrdn_s', 'rename_s', 'sasl_interactive_bind_s', 'search_s', 'search_ext_s', 'simple_bind_s', 'unbind_s', 'getEntry', ] and not ('escapehatch' in kwargs and kwargs['escapehatch'] == 'i am sure'): c_stack = inspect.stack() frame = c_stack[1] warnings.warn(DeprecationWarning("Use of raw ldap function %s. This will be removed in a future release. " "Found in: %s:%s" % (name, frame.filename, frame.lineno))) # Later, we will add a sleep here to make it even more painful. # Finally, it will raise an exception. elif 'escapehatch' in kwargs: kwargs.pop('escapehatch') if name == 'result': objtype, data = f(*args, **kwargs) # data is either a 2-tuple or a list of 2-tuples # print data if data: if isinstance(data, tuple): return objtype, Entry(data) elif isinstance(data, list): # AD sends back these search references # if objtype == ldap.RES_SEARCH_RESULT and \ # isinstance(data[-1],tuple) and \ # not data[-1][0]: # print "Received search reference: " # pprint.pprint(data[-1][1]) # data.pop() # remove the last non-entry element return objtype, [Entry(x) for x in data] else: raise TypeError("unknown data type %s returned by result" % type(data)) else: return objtype, data elif name.startswith('add'): # the first arg is self # the second and third arg are the dn and the data to send # We need to convert the Entry into the format used by # python-ldap ent = args[0] if isinstance(ent, Entry): return f(ent.dn, ent.toTupleList(), *args[2:]) else: return f(*args, **kwargs) else: > return f(*args, **kwargs) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c09be1d0> func = <built-in method modify_ext of LDAP object at 0x7fc2c09a0690> args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], 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', '5') /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: TypeError During handling of the above exception, another exception occurred: topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c092c510> def test_ticket48226_set_purgedelay(topology_m2): args = {REPLICA_PURGE_DELAY: '5', REPLICA_PURGE_INTERVAL: '5'} try: topology_m2.ms["master1"].replica.setProperties(DEFAULT_SUFFIX, None, None, args) except: log.fatal('Failed to configure replica') > assert False E assert False /export/tests/tickets/ticket48226_test.py:30: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket48226_test:ticket48226_test.py:29 Failed to configure replica | |||
Failed | tickets/ticket48226_test.py::test_ticket48226_1 | 0.16 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c092c510> def test_ticket48226_1(topology_m2): name = 'test_entry' dn = "cn=%s,%s" % (name, SUFFIX) topology_m2.ms["master1"].add_s(Entry((dn, {'objectclass': "top person".split(), 'sn': name, 'cn': name}))) # First do an update that is replicated mods = [(ldap.MOD_ADD, 'description', '5')] > topology_m2.ms["master1"].modify_s(dn, mods) /export/tests/tickets/ticket48226_test.py:52: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:631: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:603: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:600: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c09be1d0> func = <built-in method modify_ext of LDAP object at 0x7fc2c09a0690> args = ('cn=test_entry,dc=example,dc=com', [(0, 'description', '5')], 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', '5') /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: TypeError | |||
Failed | tickets/ticket48637_test.py::test_ticket48637 | 4.45 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c06e7ad0> 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:106 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 | 37.61 | |
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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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/ticket48961_test.py::test_ticket48961_storagescheme | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7fc2c0a4c5d0> 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.7/site-packages/lib389/_mapped_object.py:317: in remove self.set(key, value, action=ldap.MOD_DELETE) /usr/local/lib/python3.7/site-packages/lib389/_mapped_object.py:449: in set escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:604: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c0af8310> func = <built-in method result4 of LDAP object at 0x7fc2c0a3fb10> 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: {'desc': 'Operations error', 'info': 'passwordStorageScheme: deleting the value is not allowed.'} /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:315: OPERATIONS_ERROR -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 0x7fc2c0a4c5d0> 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 0x7fc2c0a5cf90>, 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.7/site-packages/lib389/_mapped_object.py:200: AttributeError | |||
Failed | tickets/ticket48973_test.py::test_ticket48973_homeDirectory_indexing | 9.81 | |
topology = <tests.tickets.ticket48973_test.TopologyStandalone object at 0x7fc2c1e97ad0> 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 0x7fc2c1e97ad0> 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 '[02/Mar/2020:22:24:32.349615250 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=1 etime=0.005124245\n' /export/tests/tickets/ticket48973_test.py:188: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_222427 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=[02/Mar/2020:22:24:29.029730841 -0500] conn=1 op=10 RESULT err=0 tag=101 nentries=1 etime=0.000528628 [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=[02/Mar/2020:22:24:32.349615250 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=1 etime=0.005124245 | |||
Failed | tickets/ticket49073_test.py::test_ticket49073 | 9.78 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c211fcd0> 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:103: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:631: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:603: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:600: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2c1542050> func = <built-in method modify_ext of LDAP object at 0x7fc2c0ace1b0> 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.7/site-packages/ldap/ldapobject.py:315: TypeError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 0x7fc2c040f610> 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:37: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/local/lib/python3.7/site-packages/lib389/_mapped_object.py:1178: in create return co.create(rdn, properties, self._basedn) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.backend.Backend object at 0x7fc2c040f390>, 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.7/site-packages/lib389/backend.py:580: KeyError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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/ticket49463_test.py::test_ticket_49463 | 296.70 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c0396110> 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 0x7fc2c0d5af10>('4:no:1:dc=example,dc=com') E + where <built-in method match of re.Pattern object at 0x7fc2c0d5af10> = 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 0x7fc2c0389e90>>('nsds5replicacleanruv') E + where <bound method DSLdapObject.get_attr_val_utf8 of <lib389.replica.Replica object at 0x7fc2c0389e90>> = <lib389.replica.Replica object at 0x7fc2c0389e90>.get_attr_val_utf8 /export/tests/tickets/ticket49463_test.py:188: AssertionError -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:tasks.py:1370 cleanAllRUV task (task-03022020_224906) completed successfully [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:tasks.py:1370 cleanAllRUV task (task-03022020_225002) completed successfully [32mINFO [0m lib389.utils:ticket49463_test.py:186 M1: nsds5ReplicaCleanRUV=4:no:1:dc=example,dc=com | |||
XFailed | suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_targattrfilters_18] | 0.17 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d434c950> 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:106 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 0x7fc2d434c950> 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.01 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d434c950> 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/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetattr] | 0.01 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d434c950> 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/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetfilter] | 0.01 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d434c950> real_value = '(target = ldap:///dc=example,dc=com)(targetfilter==*)(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.04 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d39c5690> _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.7/site-packages/lib389/_mapped_object.py:281: in replace self.set(key, value, action=ldap.MOD_REPLACE) /usr/local/lib/python3.7/site-packages/lib389/_mapped_object.py:449: in set escapehatch='i am sure') /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:604: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:751: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:758: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/local/lib/python3.7/site-packages/lib389/__init__.py:180: in inner return f(*args, **kwargs) /usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py:331: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/local/lib64/python3.7/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7fc2d3932790> func = <built-in method result4 of LDAP object at 0x7fc2d39d4930> 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: {'desc': 'Insufficient access', '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.7/site-packages/ldap/ldapobject.py:315: INSUFFICIENT_ACCESS | |||
XFailed | suites/config/config_test.py::test_defaultnamingcontext_1 | 0.20 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2d4358310> @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 - 'dc=example,dc=com' E + ' ' suites/config/config_test.py:278: AssertionError -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:266 Remove the original suffix which is currently nsslapd-defaultnamingcontextand check nsslapd-defaultnamingcontext become empty. | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_memberof_groups | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7fc2c286aa90> topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c1563990> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7fc2c2866510> 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:401: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_managed_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7fc2c27a95d0> topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c1563990> 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:492: 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 0x7fc2be292390> topology_m2 = <lib389.topologies.TopologyMain object at 0x7fc2c1563990> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7fc2c28da810> 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:583: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestThreeMasters::test_nested_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestThreeMasters object at 0x7fc2c22597d0> topology_m3 = <lib389.topologies.TopologyMain object at 0x7fc2c21768d0> base_m3 = <lib389.idm.nscontainer.nsContainer object at 0x7fc2c2166050> 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:796: XFailed -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.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.09 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c2065450> 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.14 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c1e53590> 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.40 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c1455050> 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.55 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c146b9d0> 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.23 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c203a550> 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.16 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c1e75690> 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.20 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c2025f90> 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.58 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c2054d90> 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 0x7fc2c2019ad0> 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.04 | |
topo = <lib389.topologies.TopologyMain object at 0x7fc2c20b7790> @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 0x7fc2c20b7790> 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/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.24 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.17 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.42 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.17 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.17 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.28 | |
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/filter/filterscanlimit_test.py::test_invalid_configuration::setup | 0.00 | |
('suites/filter/filterscanlimit_test.py', 172, 'Skipped: https://pagure.io/389-ds-base/issue/50201') | |||
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 | 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.54 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_SUB_ACI)] | 0.04 | |
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.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_EQ_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_PRES_ACI)] | 0.04 | |
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.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, REAL_EQ_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_OU, REAL_PRES_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, REAL_SUB_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_EQ_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_PRES_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_SUB_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_EQ_ACI)] | 0.05 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_PRES_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_SUB_ACI)] | 0.11 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(SALES_UESER, SALES_MANAGER, LDAPURL_ACI)] | 0.14 | |
No log output captured. | |||
Passed | suites/acl/acivattr_test.py::test_negative[(ENG_USER, ENG_MANAGER, ROLE_EQ_ACI)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/acl_deny_test.py::test_multi_deny_aci | 13.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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.02 | |
-------------------------------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.01 | |
-------------------------------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.33 | |
-------------------------------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.29 | |
-------------------------------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.29 | |
-------------------------------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.29 | |
-------------------------------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.29 | |
-------------------------------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.30 | |
-------------------------------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.29 | |
-------------------------------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.30 | |
-------------------------------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.32 | |
-------------------------------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.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:445 ######## 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:458 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:465 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:471 Disable the moddn right [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:476 ######## 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:484 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:491 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:513 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:524 Enable the moddn right [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:528 ######## 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:540 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:547 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:564 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:571 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:580 ######## 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:586 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.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:615 ######## 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:628 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:635 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:639 ######## 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:645 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:660 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:667 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:697 Bind as cn=Directory Manager (M2) [32mINFO [0m lib389:acl_test.py:717 Update (M2) uid=new_account12,cn=staged user,dc=example,dc=com (description) [32mINFO [0m lib389:acl_test.py:730 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.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:755 ######## 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:767 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:774 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:778 ######## 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:785 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:791 ######## MOVE staging -> Prod/Except (14) ######## [32mINFO [0m lib389:acl_test.py:797 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:804 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:831 ######## mode moddn_aci : GER no moddn ######## [32mINFO [0m lib389:acl_test.py:842 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:842 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:845 ######## 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:869 ######## 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:887 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:887 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:890 ######## 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:920 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:924 ######## mode legacy 1: GER no moddn ######## [32mINFO [0m lib389:acl_test.py:934 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:934 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:937 ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_no_moddn2 | 0.24 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:963 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:967 ######## 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:984 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:984 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:987 ######## 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.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1023 ######## Disable the moddn aci mod ######## [32mINFO [0m lib389:acl_test.py:134 Bind as cn=Directory Manager [32mINFO [0m lib389:acl_test.py:1027 ######## 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:1049 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1049 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1052 ######## 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:1063 ######## Add entry tuser ######## -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1087 ######## GER rights for anonymous ######## [32mINFO [0m lib389:acl_test.py:1097 dn: dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=Directory Administrators,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: ou=People,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: ou=Special Users,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=HR Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=QA Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=PD Managers,ou=Groups,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=replication_managers,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=bind_entry,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=excepts,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account0,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account1,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account2,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account3,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account4,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account5,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account6,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account7,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account8,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account9,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account10,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account11,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account12,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account13,cn=accounts,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account14,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account15,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account16,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account17,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account18,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: uid=new_account19,cn=staged user,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' [32mINFO [0m lib389:acl_test.py:1097 dn: cn=tuser,dc=example,dc=com [32mINFO [0m lib389:acl_test.py:1099 ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_rdn_write_modrdn_anonymous | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:acl_test.py:1126 dn: [32mINFO [0m lib389:acl_test.py:1128 ######## 'objectClass': [b'top'] [32mINFO [0m lib389:acl_test.py:1128 ######## 'defaultnamingcontext': [b'dc=example,dc=com'] [32mINFO [0m lib389:acl_test.py:1128 ######## 'dataversion': [b'020200303002220'] [32mINFO [0m lib389:acl_test.py:1128 ######## 'netscapemdsuffix': [b'cn=ldap://dc=ci-vm-10-0-137-0,dc=hosted,dc=upshift,dc=rdu2,dc=redhat,dc=com:39001'] [32mINFO [0m lib389:acl_test.py:1133 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:acl_test.py:1140 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 | 1.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.06 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_anyone | 0.05 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_userdn | 0.05 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_group | 0.05 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_add_access_to_parent | 0.05 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_to_parent | 0.05 | |
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.06 | |
No log output captured. | |||
Passed | suites/acl/deladd_test.py::test_allow_delete_access_not_to_dynamic_group | 0.06 | |
No log output captured. | |||
Passed | suites/acl/enhanced_aci_modrnd_test.py::test_enhanced_aci_modrnd | 0.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:61 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:65 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:100 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.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eight | 0.06 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_nine | 0.02 | |
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.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_twelve | 0.03 | |
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.05 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_sixteen | 0.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_seventeen | 0.28 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eighteen | 0.03 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_caching_changes | 0.06 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.28 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deny_group_member_all_rights_to_group_members | 0.03 | |
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.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_allow | 0.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_deeply_nested_groups_aci_allow_two | 0.05 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval | 0.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_two | 0.02 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_three | 0.05 | |
No log output captured. | |||
Passed | suites/acl/globalgroup_test.py::test_undefined_in_group_eval_four | 0.05 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_access_from_certain_network_only_ip | 4.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.29 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_ip_keyword_test_noip_cannot | 0.08 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_at_any_time | 0.31 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_morning | 0.30 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_afternoon | 0.08 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_timeofday_keyword | 1.15 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_dayofweek_keyword_test_everyday_can_access | 0.08 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_dayofweek_keyword_today_can_access | 0.08 | |
No log output captured. | |||
Passed | suites/acl/keywords_part2_test.py::test_user_cannot_access_the_data_at_all | 0.11 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_binds_with_a_password_and_can_access_the_data | 0.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.02 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_authenticated_but_has_no_rigth_on_the_data | 0.04 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_the_bind_client_is_accessing_the_directory | 0.01 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_users_binds_with_a_password_and_can_access_the_data | 0.02 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_binds_without_any_password_and_cannot_access_the_data | 0.02 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_the_data_when_connecting_from_any_machine | 0.05 | |
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.08 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_cannot_access_the_data_if_not_from_a_certain_domain | 0.05 | |
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.04 | |
No log output captured. | |||
Passed | suites/acl/keywords_test.py::test_user_can_access_from_ipv4_or_ipv6_address[[::1]] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/misc_test.py::test_accept_aci_in_addition_to_acl | 2.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.40 | |
-------------------------------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.01 | |
-------------------------------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.09 | |
-------------------------------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.47 | |
-------------------------------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 | 4.56 | |
-------------------------------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.06 | |
-------------------------------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 | 17.36 | |
-------------------------------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.33 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.13 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_all | 0.18 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_wildcards_in_dn | 0.12 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_multiple_dns | 0.27 | |
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.10 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_selfwrite_access_to_anyone | 0.33 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_uniquemember_should_also_be_the_owner | 0.32 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_aci_with_both_allow_and_deny | 0.15 | |
No log output captured. | |||
Passed | suites/acl/modify_test.py::test_allow_owner_to_modify_entry | 0.34 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_allow_write_privilege_to_anyone | 0.77 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.04 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_write_access_to_naming_atributes_two | 0.09 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_access_aci_list_contains_any_deny_rule | 0.11 | |
No log output captured. | |||
Passed | suites/acl/modrdn_test.py::test_renaming_target_entry | 0.06 | |
No log output captured. | |||
Passed | suites/acl/repeated_ldap_add_test.py::test_repeated_ldap_add | 36.48 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:232 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 - 02/Mar/2020:19:24:55.981558459 -0500] conn=1 op=11 RESULT err=49 tag=97 nentries=0 etime=0.005980678 - No such entry [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:250 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 - 02/Mar/2020:19:24:57.990516161 -0500] conn=1 op=12 RESULT err=49 tag=97 nentries=0 etime=0.004498464 - No suffix for bind dn found [32mINFO [0m tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:264 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 - 02/Mar/2020:19:25:00.045683230 -0500] conn=1 op=13 RESULT err=49 tag=97 nentries=0 etime=0.051009973 - 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:298 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:304 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:310 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:317 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:323 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:329 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:336 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:342 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:348 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:355 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:361 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:367 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:373 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:379 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:385 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:392 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:398 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:404 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:106 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.03 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, ALL_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, ALL_ACCESS)] | 0.04 | |
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.02 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(STEVE_ROLE, NOT_RULE_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(HARRY_ROLE, NOT_RULE_ACCESS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_seealso_negative[(MARY_ROLE , OR_RULE_ACCESS)] | 0.30 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_positive[NOT_RULE_ACCESS] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_positive[ALL_ACCESS] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_negaive[NESTED_ROLE_TESTER] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/roledn_test.py::test_mod_anonseealso_negaive[OR_RULE_ACCESS] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_non_leaf | 1.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.38 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_wildcard_leaf | 2.08 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search | 1.00 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search_two | 1.11 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search | 0.77 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search_two | 1.06 | |
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.14 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_to__userdn_two | 0.90 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_userdn | 0.85 | |
No log output captured. | |||
Passed | suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_presence_search | 0.15 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url | 0.98 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.82 | |
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.04 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_a_dynamic_group | 0.63 | |
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.50 | |
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.50 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_read_access_to_dynamic_group_two | 2.66 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_deny_access_to_group_should_deny_access_to_all_uniquemember | 1.34 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_entry_with_lots_100_attributes | 13.30 | |
No log output captured. | |||
Passed | suites/acl/search_real_part3_test.py::test_groupdnattr_value_is_another_group | 0.13 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with_target_set | 0.97 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.79 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_without_a_target_set | 0.99 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_read_search_and_compare_access_with_target_and_targetattr_set | 0.80 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_read_access_to_multiple_groupdns | 1.38 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_to_userdnattr | 0.72 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with__target_set | 0.92 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with__targetattr_set | 1.38 | |
No log output captured. | |||
Passed | suites/acl/search_real_test.py::test_deny_all_access_with_targetattr_set | 0.74 | |
No log output captured. | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_add | 0.54 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.46 | |
-------------------------------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.62 | |
-------------------------------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:313 ######################### DELETE ###################### [32mINFO [0m lib389:selfdn_permissions_test.py:316 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:321 Try to delete cn=test_entry, dc=example,dc=com (aci is missing) [32mINFO [0m lib389:selfdn_permissions_test.py:324 Exception (expected): INSUFFICIENT_ACCESS [32mINFO [0m lib389:selfdn_permissions_test.py:328 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci [32mINFO [0m lib389:selfdn_permissions_test.py:340 Bind as cn=bind_entry, dc=example,dc=com [32mINFO [0m lib389:selfdn_permissions_test.py:344 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.02 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_2] | 0.17 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_3] | 0.18 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_4] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_5] | 0.18 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_6] | 1.89 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_7] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_8] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_9] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_10] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_11] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_12] | 0.17 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_13] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_14] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_15] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_19] | 0.18 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_21] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_22] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_23] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_acl_mispel] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_version_string] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Authenticate_statement] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Multiple_targets] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_more_than_three] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_semicolon_instead_of_comma_in_permission] | 0.01 | |
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.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_donot_cote_the_name_of_the_aci] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_1] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_2] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_3] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_no_semicolon_at_the_end_of_the_aci] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_aci_invalid_syntax[test_bad_filter] | 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_targattrfilters] | 0.02 | |
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.01 | |
No log output captured. | |||
Passed | suites/acl/syntax_test.py::test_target_set_above_the_entry_test | 0.01 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ROLEDNACCESS)] | 0.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.27 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,GROUPDNACCESS)] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,LDAPURLACCESS)] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ATTRNAMEACCESS)] | 0.01 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_0, OU_2)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_1,ANCESTORS)] | 0.27 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_2,GRANDPARENTS)] | 0.29 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,OU_2)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4, ANCESTORS)] | 0.01 | |
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.01 | |
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.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,USERDNACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,GROUPDNACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,LDAPURLACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,ATTRNAMEACCESS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0, ANCESTORS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,GRANDPARENTS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,PARENTS)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,CHILDREN)] | 0.02 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_2,PARENTS)] | 0.04 | |
No log output captured. | |||
Passed | suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_4,GRANDSONS)] | 0.04 | |
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.04 | |
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.02 | |
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.02 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_we_can_search_as_expected | 0.76 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.04 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_modify_with_multiple_filters | 0.04 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_denied_by_multiple_filters | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_allowed_add_one_attribute | 0.04 | |
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.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_on_modrdn | 0.04 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_on_modrdn_allow | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_part2_test.py::test_targattrfilters_keyword | 0.12 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_not_allowed_to_delete | 0.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.06 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_allowed_to_delete | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_not_allowed_to_deleted | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_modify_replace | 0.08 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_modify_delete | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_replace_an_attribute_if_we_lack | 0.07 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_have_del_rights_to_all_attr_value | 0.30 | |
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.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_have_del_rights_to_all_attr_values | 0.30 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_cantnot_delete_an_entry_with_attribute_values_we_are_not_allowed_delete | 0.06 | |
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.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_title | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_allow_to_modify | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_selfwrite_does_not_confer_write_on_a_targattrfilters_atribute | 0.05 | |
No log output captured. | |||
Passed | suites/acl/valueacl_test.py::test_selfwrite_continues_to_give_rights_to_attr_in_targetattr_list | 0.06 | |
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.06 | |
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.01 | |
No log output captured. | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_basic | 5.75 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:80 Restart the server [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:86 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:87 And appending the cn values in a list [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:92 Check employeenumber encryption is enabled [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:95 Check telephoneNumber encryption is enabled [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:98 Check that encrypted attribute is present for user i.e. telephonenumber | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_ciphertext | 13.15 | |
------------------------------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:125 Export data as ciphertext [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:136 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:137 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:143 Delete the test user entry with encrypted data [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:146 Import data as ciphertext, which was exported previously [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:157 Check that the data with encrypted attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_plaintext | 14.81 | |
------------------------------Captured stderr call------------------------------ [02/Mar/2020:19:28:36.902584984 -0500] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [02/Mar/2020:19:28:36.908969456 -0500] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [02/Mar/2020:19:28:36.912286803 -0500] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [02/Mar/2020:19:28:36.915592741 -0500] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [02/Mar/2020:19:28:37.110908912 -0500] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [02/Mar/2020:19:28:37.114786943 -0500] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [02/Mar/2020:19:28:37.118374857 -0500] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif [02/Mar/2020:19:28:43.784678642 -0500] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [02/Mar/2020:19:28:43.788550132 -0500] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [02/Mar/2020:19:28:43.791342664 -0500] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [02/Mar/2020:19:28:43.794816116 -0500] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [02/Mar/2020:19:28:43.994228687 -0500] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [02/Mar/2020:19:28:43.997796777 -0500] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [02/Mar/2020:19:28:44.001232177 -0500] - 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:186 Export data as plain text [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:197 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:198 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:202 Delete the test user entry with encrypted data [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:205 Import data as plain text, which was exported previously [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:216 Check that the attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_unindexed | 6.73 | |
------------------------------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:238 Export data as cipher text [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:249 Check that the attribute is present in the exported file [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:250 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 | 12.80 | |
------------------------------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:282 Add two test backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:302 Enables attribute encryption for telephoneNumber in test_backend1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:307 Enables attribute encryption for employeeNumber in test_backend2 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:312 Add a test user with encrypted attributes in both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:321 Export data as ciphertext from both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:338 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:339 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:345 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:346 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:352 Delete test backends | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_backends | 8.58 | |
------------------------------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:380 Add two test backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:399 Enables attribute encryption for telephoneNumber in test_backend1 [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:404 Add a test user with telephoneNumber in both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:413 Export data as ciphertext from both backends [32mINFO [0m tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:430 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:431 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:437 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:438 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:444 Delete test backends | |||
Passed | suites/automember_plugin/automember_mod_test.py::test_mods | 12.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.18 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.44 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_adduser | 0.22 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_delete_default_group | 3.60 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_no_default_group | 4.82 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_delete_target_group | 4.69 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_disable_the_plug_in | 0.19 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. | |||
Passed | suites/automember_plugin/basic_test.py::test_custom_config_area | 0.27 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_ability_to_control_behavior_of_modifiers_name | 9.24 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_posixaccount_objectclass_automemberdefaultgroup | 0.53 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_duplicated_member_attributes_added_when_the_entry_is_re_created | 0.10 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_for_hostgroups | 0.27 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_plugin_creates_member_attributes_of_the_automemberdefaultgroup | 0.14 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_with_uniquemember | 9.30 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_invalid_automembergroupingattr_member | 1.03 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_valid_and_invalid_automembergroupingattr | 1.43 | |
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.14 | |
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.06 | |
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.06 | |
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.08 | |
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.06 | |
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.06 | |
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.08 | |
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.08 | |
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.04 | |
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.07 | |
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.06 | |
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.08 | |
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.07 | |
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.06 | |
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.06 | |
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.07 | |
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.07 | |
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.07 | |
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.06 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_27-595-690-ContractHR-Managers-Contractors] | 0.06 | |
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.07 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_34-8195-693-Temporary-Managers-Contractors] | 0.06 | |
No log output captured. | |||
Passed | suites/automember_plugin/basic_test.py::test_reject_invalid_config_and_we_donot_deadlock_the_server | 9.04 | |
No log output captured. | |||
Passed | suites/automember_plugin/configuration_test.py::test_configuration | 4.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.74 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 2.36 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 60.94 | |
------------------------------Captured stderr call------------------------------ ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif | |||
Passed | suites/basic/basic_test.py::test_basic_backup | 20.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:589 Backup task backup_03022020_193232 completed successfully [32mINFO [0m lib389:tasks.py:643 Restore task restore_03022020_193234 completed successfully | |||
Passed | suites/basic/basic_test.py::test_basic_db2index | 5.40 | |
------------------------------Captured stderr call------------------------------ [02/Mar/2020:19:32:55.255027340 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.259676676 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:19:32:55.262574424 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.265738350 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.268880304 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.271642203 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.274337620 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.276855855 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.284034554 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.286899619 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.289467628 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7753170944, process usage 22802432 [02/Mar/2020:19:32:55.292133154 -0500] - INFO - check_and_set_import_cache - Import allocates 3028582KB import cache. [02/Mar/2020:19:32:55.294886919 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.299223384 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.302485221 -0500] - INFO - bdb_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/givenName.db) [02/Mar/2020:19:32:55.305411754 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/givenName.db [02/Mar/2020:19:32:55.308314423 -0500] - INFO - bdb_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/aci.db) [02/Mar/2020:19:32:55.311200485 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/aci.db [02/Mar/2020:19:32:55.314324259 -0500] - INFO - bdb_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/sn.db) [02/Mar/2020:19:32:55.316914611 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/sn.db [02/Mar/2020:19:32:55.319862292 -0500] - INFO - bdb_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/numsubordinates.db) [02/Mar/2020:19:32:55.322338007 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/numsubordinates.db [02/Mar/2020:19:32:55.325280284 -0500] - INFO - bdb_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/entryusn.db) [02/Mar/2020:19:32:55.327956933 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/entryusn.db [02/Mar/2020:19:32:55.330792958 -0500] - INFO - bdb_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/nsuniqueid.db) [02/Mar/2020:19:32:55.334989465 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/nsuniqueid.db [02/Mar/2020:19:32:55.338212050 -0500] - INFO - bdb_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/ancestorid.db) [02/Mar/2020:19:32:55.341122329 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/ancestorid.db [02/Mar/2020:19:32:55.343805419 -0500] - INFO - bdb_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/parentid.db) [02/Mar/2020:19:32:55.346949460 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/parentid.db [02/Mar/2020:19:32:55.351399199 -0500] - INFO - bdb_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/mail.db) [02/Mar/2020:19:32:55.354510757 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/mail.db [02/Mar/2020:19:32:55.357484954 -0500] - INFO - bdb_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/telephoneNumber.db) [02/Mar/2020:19:32:55.360497718 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/telephoneNumber.db [02/Mar/2020:19:32:55.366342112 -0500] - INFO - bdb_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/cn.db) [02/Mar/2020:19:32:55.369418447 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/cn.db [02/Mar/2020:19:32:55.372509470 -0500] - INFO - bdb_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/DBVERSION) [02/Mar/2020:19:32:55.375294697 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/DBVERSION [02/Mar/2020:19:32:55.378135741 -0500] - INFO - bdb_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/uid.db) [02/Mar/2020:19:32:55.382449679 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/uid.db [02/Mar/2020:19:32:55.385160571 -0500] - INFO - bdb_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/entryrdn.db) [02/Mar/2020:19:32:55.387812549 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/entryrdn.db [02/Mar/2020:19:32:55.390311219 -0500] - INFO - bdb_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/uniquemember.db) [02/Mar/2020:19:32:55.392776034 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/uniquemember.db [02/Mar/2020:19:32:55.395724161 -0500] - INFO - bdb_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/id2entry.db) [02/Mar/2020:19:32:55.398302514 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/id2entry.db [02/Mar/2020:19:32:55.401081391 -0500] - INFO - bdb_copy_directory - Backing up file 16 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/objectclass.db) [02/Mar/2020:19:32:55.404277776 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/userRoot/objectclass.db [02/Mar/2020:19:32:55.407263955 -0500] - INFO - upgradedb_core - userRoot: Start upgradedb. [02/Mar/2020:19:32:55.410300358 -0500] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [02/Mar/2020:19:32:55.413179158 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:55.415759439 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7752749056, process usage 23719936 [02/Mar/2020:19:32:55.418292292 -0500] - INFO - check_and_set_import_cache - Import allocates 3028417KB import cache. [02/Mar/2020:19:32:55.584433704 -0500] - INFO - bdb_import_main - reindex userRoot: Index buffering enabled with bucket size 100 [02/Mar/2020:19:32:56.100939194 -0500] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [02/Mar/2020:19:32:56.304846976 -0500] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [02/Mar/2020:19:32:56.308567280 -0500] - INFO - bdb_import_main - reindex userRoot: Cleaning up producer thread... [02/Mar/2020:19:32:56.311732001 -0500] - INFO - bdb_import_main - reindex userRoot: Indexing complete. Post-processing... [02/Mar/2020:19:32:56.314718058 -0500] - INFO - bdb_import_main - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [02/Mar/2020:19:32:56.318599267 -0500] - INFO - bdb_import_main - reindex userRoot: Generating numSubordinates complete. [02/Mar/2020:19:32:56.321893998 -0500] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [02/Mar/2020:19:32:56.324787561 -0500] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [02/Mar/2020:19:32:56.327345149 -0500] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Starting sort of ancestorid non-leaf IDs... [02/Mar/2020:19:32:56.330005590 -0500] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished sort of ancestorid non-leaf IDs. [02/Mar/2020:19:32:56.336811250 -0500] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [02/Mar/2020:19:32:56.340320867 -0500] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [02/Mar/2020:19:32:56.343273698 -0500] - INFO - bdb_import_main - reindex userRoot: Flushing caches... [02/Mar/2020:19:32:56.346555279 -0500] - INFO - bdb_import_main - reindex userRoot: Closing files... [02/Mar/2020:19:32:56.438617774 -0500] - INFO - bdb_import_main - reindex userRoot: Reindexing complete. Processed 160 entries in 1 seconds. (160.00 entries/sec) [02/Mar/2020:19:32:56.443638552 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/log.0000000001 [02/Mar/2020:19:32:56.456738102 -0500] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-03-02T19:32:55.137714/DBVERSION [02/Mar/2020:19:32:56.460499171 -0500] - INFO - bdb_pre_close - All database threads now stopped [02/Mar/2020:19:32:56.623650326 -0500] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [02/Mar/2020:19:32:56.629432796 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.637225708 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:19:32:56.640243664 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.643330955 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.646631923 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.649660391 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.652619968 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.655419729 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.661535071 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.666750167 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.670966794 -0500] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [02/Mar/2020:19:32:56.674698415 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.677615124 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7753793536, process usage 22638592 [02/Mar/2020:19:32:56.680406150 -0500] - INFO - check_and_set_import_cache - Import allocates 3028825KB import cache. [02/Mar/2020:19:32:56.683116857 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:19:32:56.832292323 -0500] - INFO - bdb_db2index - userRoot: Indexing attribute: uid [02/Mar/2020:19:32:56.835611939 -0500] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [02/Mar/2020:19:32:56.838383561 -0500] - ERR - dblayer_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [02/Mar/2020:19:32:56.850378618 -0500] - INFO - bdb_db2index - userRoot: Finished indexing. [02/Mar/2020:19:32:56.871732644 -0500] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | suites/basic/basic_test.py::test_basic_acl | 0.49 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_searches | 0.33 | |
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.18 | |
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.51 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_systemctl | 12.17 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/basic/basic_test.py::test_basic_ldapagent | 5.16 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_dse_survives_kill9 | 11.32 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[namingContexts] | 0.02 | |
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.19 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[vendorVersion] | 0.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[namingContexts] | 0.25 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedLDAPVersion] | 0.25 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedControl] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedExtension] | 0.25 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[supportedSASLMechanisms] | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_mod_def_rootdse_attr[vendorName] | 0.00 | |
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.03 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_original_type | 0.02 | |
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 | 6.59 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_ldbm_modification_audit_log | 12.77 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_dscreate | 16.84 | |
------------------------------Captured stdout call------------------------------ Starting installation... Completed installation for test_dscreate | |||
Passed | suites/basic/basic_test.py::test_dscreate_multiple_dashes_name | 7.61 | |
-----------------------------Captured stdout setup------------------------------ Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef | |||
Passed | suites/betxns/betxn_test.py::test_betxt_7bit | 116.15 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:50 Running test_betxt_7bit... [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:76 test_betxt_7bit: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_attr_uniqueness | 5.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:127 test_betxn_attr_uniqueness: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_memberof | 5.84 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:173 test_betxn_memberof: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_modrdn_memberof_cache_corruption | 4.29 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:227 test_betxn_modrdn_memberof: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_ri_and_mep_cache_corruption | 0.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.betxns.betxn_test:betxn_test.py:337 Test PASSED | |||
Passed | suites/clu/clu_test.py::test_clu_pwdhash | 0.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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}t4TErnHdYgfVAyQRrSI8JdQZa3bdDvuHrRXF5w== [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.06 | |
-------------------------------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}dMFvnYWF2cI99pZXPiyx4o1hlDWt1vZjheJX49+C0ReqTd9Bljcckw== [32mINFO [0m tests.suites.clu.clu_test:clu_test.py:88 returned the hashed string using the algorithm set in nsslapd-rootpwstoragescheme | |||
Passed | suites/config/autotuning_test.py::test_threads_basic | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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_invalid_value[-2] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:59 Set nsslapd-threadnumber: -2. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[0] | 0.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:59 Set nsslapd-threadnumber: 0. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[invalid] | 0.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:59 Set nsslapd-threadnumber: invalid. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_back_from_manual_value | 0.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:81 Set nsslapd-threadnumber: -1 to enable autotuning and save the new value [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:85 Set nsslapd-threadnumber to the autotuned value decreased by 2 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:90 Set nsslapd-threadnumber: -1 to enable autotuning [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:93 Assert nsslapd-threadnumber is back to the autotuned value | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-] | 4.54 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:152 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:162 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-0] | 5.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:152 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:159 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-400] | 4.23 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:149 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:159 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-40] | 10.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:152 Delete nsslapd-cache-autosize [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:159 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-] | 4.39 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:149 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:162 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-401] | 4.94 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:149 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:159 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-0] | 5.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:141 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:142 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:143 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:144 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:145 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:146 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:149 Set nsslapd-cache-autosize to 10 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:159 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:168 Trying to set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:171 Trying to set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:188 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:189 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:190 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:191 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:192 nsslapd-cache-autosize == b'10' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:193 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[0] | 9.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:252 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:252 Set nsslapd-cache-autosize-split to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[] | 10.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:255 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'166964838' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'603979776' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:255 Delete nsslapd-cache-autosize-split [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[40] | 9.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'25' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:252 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 0 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:245 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:246 nsslapd-dbcachesize == b'267143740' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:247 nsslapd-cachememsize == b'469762048' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:248 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:249 nsslapd-cache-autosize-split == b'40' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:252 Set nsslapd-cache-autosize-split to 40 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:261 Set nsslapd-dbcachesize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:263 Set nsslapd-cachememsize to 33333333 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:279 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:280 nsslapd-dbcachesize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:281 nsslapd-cachememsize == b'33333333' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:282 nsslapd-dncachememsize == b'67108864' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:283 nsslapd-cache-autosize == b'0' [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:284 nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[-2] | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:318 Set nsslapd-cache-autosize-split to -2 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:324 Set nsslapd-cache-autosize to -2 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[102] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:318 Set nsslapd-cache-autosize-split to 102 [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:324 Set nsslapd-cache-autosize to 102 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[invalid] | 0.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:318 Set nsslapd-cache-autosize-split to invalid [32mINFO [0m tests.suites.config.autotuning_test:autotuning_test.py:324 Set nsslapd-cache-autosize to invalid | |||
Passed | suites/config/config_test.py::test_maxbersize_repl | 15.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:67 Set nsslapd-maxbersize: 20K to master2 [32mINFO [0m tests.suites.config.config_test:config_test.py:72 Try to add attribute with a big value to master2 - expect to FAIL [32mINFO [0m tests.suites.config.config_test:config_test.py:79 Try to add attribute with a big value to master1 - expect to PASS [32mINFO [0m tests.suites.config.config_test:config_test.py:84 Check if a big value was successfully added to master1 [32mINFO [0m tests.suites.config.config_test:config_test.py:88 Check if a big value was successfully replicated to master2 | |||
Passed | suites/config/config_test.py::test_config_listen_backport_size | 0.27 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_config_deadlock_policy | 0.59 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_defaultnamingcontext | 2.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:218 Check the attribute nsslapd-defaultnamingcontext is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:221 Delete nsslapd-defaultnamingcontext attribute [32mINFO [0m tests.suites.config.config_test:config_test.py:228 modify nsslapd-defaultnamingcontext with new suffix [32mINFO [0m tests.suites.config.config_test:config_test.py:231 Add new invalid value at runtime to nsslapd-defaultnamingcontext [32mINFO [0m tests.suites.config.config_test:config_test.py:235 Modify nsslapd-defaultnamingcontext with blank value [32mINFO [0m tests.suites.config.config_test:config_test.py:238 Add new suffix when nsslapd-defaultnamingcontext is empty [32mINFO [0m tests.suites.config.config_test:config_test.py:242 Check the value of the nsslapd-defaultnamingcontext automatically have the new suffix [32mINFO [0m tests.suites.config.config_test:config_test.py:245 Adding new suffix when nsslapd-defaultnamingcontext is not empty [32mINFO [0m tests.suites.config.config_test:config_test.py:249 Check the value of the nsslapd-defaultnamingcontext has not changed [32mINFO [0m tests.suites.config.config_test:config_test.py:252 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:256 Remove all the suffix at the end | |||
Passed | suites/config/config_test.py::test_allow_add_delete_config_attributes | 4.56 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:306 Add a new valid attribute at runtime to cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:310 Delete nsslapd-listenhost to restore the default value [32mINFO [0m tests.suites.config.config_test:config_test.py:315 Add new invalid attribute at runtime to cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:319 Make sure the invalid attribute is not added | |||
Passed | suites/config/config_test.py::test_ignore_virtual_attrs | 1.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:352 Check the attribute nsslapd-ignore-virtual-attrs is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:355 Check the default value of attribute nsslapd-ignore-virtual-attrs should be OFF [32mINFO [0m tests.suites.config.config_test:config_test.py:358 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:363 Set invalid value for attribute nsslapd-ignore-virtual-attrs [32mINFO [0m tests.suites.config.config_test:config_test.py:374 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:387 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:390 Set nsslapd-ignore-virtual-attrs=on [32mINFO [0m tests.suites.config.config_test:config_test.py:393 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 | 8.77 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.config.config_test:config_test.py:421 Check the attribute nsslapd-ndn-cache-enabled is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:424 Check the attribute nsslapd-ndn-cache-enabled has the default value set as ON [32mINFO [0m tests.suites.config.config_test:config_test.py:427 Check the attribute nsslapd-ndn-cache-max-size is present in cn=config [32mINFO [0m tests.suites.config.config_test:config_test.py:433 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:434 Fetch the monitor value according to the ds version [32mINFO [0m tests.suites.config.config_test:config_test.py:440 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:446 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:452 Set invalid value for nsslapd-ndn-cache-enabled [32mINFO [0m tests.suites.config.config_test:config_test.py:456 Set invalid value for nsslapd-ndn-cache-max-size | |||
Passed | suites/config/regression_test.py::test_maxbersize_repl | 7.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.42 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.47 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.44 | |
-----------------------------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:106 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.0153218 s, 1.7 GB/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.00611398 s, 1.7 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_free_up_the_disk_space_and_change_ds_config | 4.37 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_verify_operation_with_nsslapd_disk_monitoring_logging_critical_off | 34.76 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.00592781 s, 1.8 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.28 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0169203 s, 1.9 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_setting_nsslapd_disk_monitoring_logging_critical_to_off | 3.51 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off | 64.36 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0180992 s, 579 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off_below_half_of_the_threshold | 152.47 | |
------------------------------Captured stderr call------------------------------ 30+0 records in 30+0 records out 31457280 bytes (31 MB, 30 MiB) copied, 0.0226776 s, 1.4 GB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_half_of_the_threshold | 105.12 | |
------------------------------Captured stderr call------------------------------ 31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0368656 s, 882 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_4kb | 17.90 | |
------------------------------Captured stderr call------------------------------ 25+0 records in 25+0 records out 26214400 bytes (26 MB, 25 MiB) copied, 0.022725 s, 1.2 GB/s dd: error writing '/var/log/dirsrv/slapd-standalone1/foo1': No space left on device 10+0 records in 9+0 records out 9592832 bytes (9.6 MB, 9.1 MiB) copied, 0.0104891 s, 915 MB/s | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_threshold_to_overflow_value | 0.04 | |
No log output captured. | |||
Passed | suites/disk_monitoring/disk_monitoring_test.py::test_threshold_is_reached_to_half | 14.48 | |
------------------------------Captured stderr call------------------------------ 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.00633371 s, 1.7 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.00 | |
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.00 | |
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.00 | |
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 | 4.22 | |
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:106 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:35 Check that "partition", "size", "used", "available", "use%" words are present in the string [32mINFO [0m lib389:disk_space_test.py:39 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:106 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:208 on | |||
Passed | suites/ds_logs/ds_logs_test.py::test_plugin_set_invalid | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:227 test_plugin_set_invalid - Expect to fail with junk value | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_on | 5.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:254 Bug 1273549 - Check access logs for millisecond, when attribute is ON [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:255 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:259 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:262 parse the access logs | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_off | 13.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:294 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:296 test_log_plugin_off - set the configuration attribute to OFF [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:299 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:302 test_log_plugin_off - delete the previous access logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:308 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:311 check access log that microseconds are not present | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_0 | 4.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:338 Set nsslapd-plugin-logging to on [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:341 Configure access log level to 0 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:345 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:349 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:355 Check if the other internal operations are not present | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_4 | 4.83 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:386 Set nsslapd-plugin-logging to on [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:389 Configure access log level to 4 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:393 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:398 Check if access log contains internal MOD operation in correct format [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:404 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_260 | 4.15 | |
-------------------------------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 -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:443 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:447 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:463 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:476 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:487 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_131076 | 5.91 | |
-------------------------------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 -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:525 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:529 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:545 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:558 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:569 Check if the other internal operations have the correct format | |||
Passed | suites/ds_logs/ds_logs_test.py::test_internal_log_level_516 | 7.21 | |
-------------------------------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 -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:607 Restart the server to flush the logs [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:611 Check the access logs for ADD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:630 Check the access logs for MOD operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:646 Check the access logs for DEL operation of the user [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:660 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.84 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:687 Make a search [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:690 Restart the server to flush the logs | |||
Passed | suites/ds_logs/ds_logs_test.py::test_etime_at_border_of_second | 22.44 | |
No log output captured. | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_base_dn_when_invalid_attr_request | 4.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:771 Set accesslog logbuffering to off to get the log in real time [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:774 delete the previous access logs to get a fresh new one [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:777 Search the default suffix, with invalid '"" ""' attribute request [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:778 A Protocol error exception should be raised, see https://pagure.io/389-ds-base/issue/49969 [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:784 Check the access logs for correct messages | |||
Passed | suites/ds_logs/ds_logs_test.py::test_audit_log_rotate_and_check_string | 26.79 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:830 Doing modifications to rotate audit log [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:835 Doing one more modification just in case [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:842 Check that DS string is present on first line [32mINFO [0m tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:846 Check that DS string is present only once | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[24576] | 0.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.39 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16385] | 1.08 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_dse_config_loglevel_error | 21.16 | |
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:106 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/dynamic_plugins/dynamic_plugins_test.py::test_acceptance | 44.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_memory_corruption | 46.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_stress | 662.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/filter/basic_filter_test.py::test_search_attr | 0.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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.58 | |
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 | 5.54 | |
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.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:=16777216))-1] | 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:=8388608))-1] | 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:=5))-3] | 0.18 | |
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.00 | |
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.17 | |
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.18 | |
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.16 | |
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.16 | |
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.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:=89)(testUserAccountControl:1.2.840.113556.1.4.803:=536)))-0] | 0.18 | |
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.18 | |
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.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:=-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.18 | |
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.18 | |
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.00 | |
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.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:=65536))-5] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries | 0.20 | |
No log output captured. | |||
Passed | suites/filter/bitw_filter_test.py::test_5_entries1 | 0.18 | |
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:106 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.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=*)(sn=last3)(givenname=*))-1] | 0.17 | |
-------------------------------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.17 | |
-------------------------------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.16 | |
-------------------------------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.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)(!(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.17 | |
-------------------------------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.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)(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.17 | |
-------------------------------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.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)(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.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.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.01 | |
-------------------------------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.00 | |
-------------------------------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.01 | |
-------------------------------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.16 | |
-------------------------------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 | 20.85 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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.02 | |
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.02 | |
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.01 | |
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.01 | |
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.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod2] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod3] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod4] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod5] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod6] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod7] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod8] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod9] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod10] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod11] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod12] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod13] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod14] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod15] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod16] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods[mod17] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode2] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode3] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode4] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode5] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode6] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode7] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode8] | 0.02 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode11] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode12] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode13] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode14] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode15] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode16] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_replace[mode17] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode0] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode1] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode2] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode3] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode4] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode5] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode6] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode7] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode8] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode9] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode10] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode11] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode12] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode13] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode14] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode15] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode16] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_mods_delete[mode17] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_search_positive_negative | 0.08 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch:caseExactMatch:=ÇélIné Ändrè)-1] | 0.00 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrbooleanMatch:booleanMatch:=TRUE)-1] | 0.00 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch:caseIgnoreListMatch:=foo1$bar)-1] | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrdirectoryStringFirstComponentMatch:directoryStringFirstComponentMatch:=ÇélIné Ändrè1)-1] | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerMatch:integerMatch:=-2)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerMatch:integerOrderingMatch:=-2)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerFirstComponentMatch:integerFirstComponentMatch:=-2)-1] | 0.00 | |
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.00 | |
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.01 | |
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.00 | |
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=*é Ä*)-5] | 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.00 | |
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=*rai*)-3] | 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=sprain1*)-1] | 0.00 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=ÇélIné Ändrè1*)-1] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1)-1] | 0.01 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*1$b*)-1] | 0.00 | |
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.17 | |
No log output captured. | |||
Passed | suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=*000*)-6] | 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.00 | |
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:106 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.18 | |
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.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_schema | 4.91 | |
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.00 | |
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.17 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(gidNumber=*)(!(gidNumber=18446744073709551617)))] | 0.17 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(uidNumber=*)(!(gidNumber=18446744073709551617)))] | 0.17 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(&(myintattr=*)(!(myintattr=18446744073709551617)))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(uidNumber>=-18446744073709551617)] | 0.17 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(gidNumber>=-18446744073709551617)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(uidNumber<=18446744073709551617)] | 0.18 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(gidNumber<=18446744073709551617)] | 0.17 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing[(myintattr<=18446744073709551617)] | 0.15 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber=54321)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber=54321)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr=54321)] | 0.17 | |
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_indexing_test.py::test_indexing_negative[(gidNumber>=999999999999999999999999999999)] | 0.18 | |
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:106 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.00 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_eq | 0.01 | |
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.01 | |
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.02 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_or_eq | 0.01 | |
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.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 2.06 | |
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.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule4] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule5] | 0.02 | |
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.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule9] | 0.01 | |
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.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule12] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule13] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule14] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule15] | 0.01 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode1] | 0.02 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode4] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode5] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode6] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode7] | 0.05 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode10] | 0.18 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode11] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode12] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode13] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode14] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode15] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode16] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_modes[mode17] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode0] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode1] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode2] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode3] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode4] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode5] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode6] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode7] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode8] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode9] | 0.09 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode10] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode11] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode12] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode13] | 0.03 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode14] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode15] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode16] | 0.04 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode17] | 0.06 | |
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.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch:caseExactOrderingMatch:=ÇélIné Ändrè)-5] | 0.00 | |
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.00 | |
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.00 | |
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.00 | |
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.17 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attruniqueMemberMatch:uniqueMemberMatch:=cn=foo1,cn=bar#'0001'B)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-10] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-11] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch:telephoneNumberMatch:=+1 408 555 4798)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attroctetStringMatch:octetStringMatch:=AAAAAAAAAAAAAAE=)-1] | 0.00 | |
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.00 | |
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.00 | |
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.16 | |
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.16 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=sprain1*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*sprain1)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*rai*)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*é Ä*)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*1$b*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*00001*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=00001*)-1] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*00001)-1] | 0.00 | |
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.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=* 55*)-6] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_test.py::test_filter_escaped | 0.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.00 | |
-------------------------------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.17 | |
-------------------------------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 | 1.24 | |
-------------------------------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.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.filter.filter_test:filter_test.py:254 Running test_filter_escaped... [32mINFO [0m lib389:filter_test.py:271 Try to search with filter (cn:de:=ext-test-entry) [32mINFO [0m lib389:filter_test.py:277 Try to search with filter (cn:caseIgnoreIA5Match:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:283 Try to search with filter (cn:caseIgnoreMatch:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:289 Try to search with filter (cn:caseExactMatch:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:295 Try to search with filter (cn:caseExactMatch:=ext-test-entry) [32mINFO [0m lib389:filter_test.py:301 Try to search with filter (cn:caseExactIA5Match:=EXT-TEST-ENTRY) [32mINFO [0m lib389:filter_test.py:307 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.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=jreu*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=*exam*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*)] | 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:=>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.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:=>user100)] | 0.02 | |
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.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.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.02 | |
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.02 | |
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.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.2:=user20)] | 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.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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=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.4:=A)] | 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:=>=user20)] | 0.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=user20)] | 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.4:=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:=>=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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(description=*x*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=ptyler)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*wal*)] | 0.01 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=Cupertino)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(objectclass=inetorgperson)] | 0.02 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=201)] | 0.01 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(sn~=tiller)) (uid=ptyler))] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*) (roomNumber=0312))] | 0.01 | |
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*))(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.03 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*)(|(sn~=tiller) (roomNumber=2295)))] | 0.01 | |
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.01 | |
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.01 | |
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.01 | |
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.01 | |
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.01 | |
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.01 | |
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.32 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user1))(objectclass=inetorgperson))] | 0.02 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(roomNumber=2295) (uid=*wal*))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.01 | |
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.02 | |
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.02 | |
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.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.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.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=*))(!(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.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.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.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.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.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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(userpassword=*)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(fred=*)] | 0.01 | |
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.01 | |
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.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<user1)] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<z)] | 0.01 | |
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.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=A)] | 0.01 | |
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.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=user20)] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=z)] | 0.01 | |
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.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(sn~=tiller)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(givenName~=pricella)] | 0.01 | |
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.02 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid=user30)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid=user40)] | 0.01 | |
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.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/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.01 | |
No log output captured. | |||
Passed | suites/filter/filterscanlimit_test.py::test_idlistscanlimit | 10.42 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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,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.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.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[-False-oper_attr_list0-*] | 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[-False-oper_attr_list0-objectClass] | 0.25 | |
-------------------------------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.41 | |
-------------------------------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.25 | |
-------------------------------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.25 | |
-------------------------------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.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[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.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[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.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[cn=config-False-oper_attr_list6-*] | 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[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 | 1.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.27 | |
No log output captured. | |||
Passed | suites/filter/schema_validation_test.py::test_filter_validation_warn_safe | 1.32 | |
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:106 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.00 | |
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.00 | |
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.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition25-nsRoleDN] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition26-mailquota] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition27-modifiersName] | 0.00 | |
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:106 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.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=vpe*)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=*emai*)] | 0.00 | |
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.00 | |
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.00 | |
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.01 | |
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.00 | |
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.00 | |
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.00 | |
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.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.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(&(uid=*wal*)(|(nsRole~=cn=new managed) (l=Cupertino)))] | 0.00 | |
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.00 | |
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.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[(|(!(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.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[(|(!(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.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(!(uid=user20))(!(uid=user30)))] | 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[(|(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] | 0.02 | |
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.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=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.00 | |
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.00 | |
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.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_negative[(postalCode:de:==77777)] | 0.00 | |
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.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:=1)] | 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:=<vpemail)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:es:=<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:=vpemail)] | 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.15.1:=<900)] | 0.01 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:es:=<900)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota<=100)] | 0.00 | |
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.00 | |
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.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:=<=100)] | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=600)] | 0.16 | |
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.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.4:=900)] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(Description=This is the special \2a attribute value)] | 0.00 | |
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.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[(&(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.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(!(l=Cupertino))(emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(l=Cupertino)(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.00 | |
No log output captured. | |||
Passed | suites/filter/vfilter_simple_test.py::test_param_negative[(&(l=Cupertino) (emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] | 0.00 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_verify_trees | 3.05 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_sync_through_to_all_4_masters | 3.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_modify_some_data_in_m3 | 8.83 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_delete_a_few_entries_in_m4 | 5.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_replicated_multivalued_entries | 1.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_bad_replication_agreement | 24.10 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_nsds5replicaenabled_verify | 68.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_create_an_entry_on_the_supplier | 3.59 | |
No log output captured. | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_bob_acceptance_tests | 5.77 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fourwaymmr/fourwaymmr_test.py::test_replica_backup_and_restore | 30.76 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/output_file [02/Mar/2020:20:13:05.475264011 -0500] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/fractional/fractional_test.py::test_fractional_agreements | 3.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 already exists [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 already exists [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer2 from master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_read_only_consumer | 0.04 | |
No log output captured. | |||
Passed | suites/fractional/fractional_test.py::test_read_write_supplier | 3.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_filtered_attributes | 3.06 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_fewer_changes_in_single_operation | 9.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_newly_added_attribute_nsds5replicatedattributelisttotal | 6.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_attribute_nsds5replicatedattributelisttotal | 21.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/fractional/fractional_test.py::test_implicit_replication_of_password_policy | 12.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working | |||
Passed | suites/get_effective_rights/acceptance_test.py::test_group_aci_entry_exists | 0.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.17 | |
-------------------------------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.29 | |
-----------------------------Captured stdout setup------------------------------ Kerberos master password: q3qfc7G7eBCzL.HWiUYM5G32iunjC7n3z3yM1LA3af5jGsz6J8bWX8M.YFAI2UtjY 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-137-0.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-137-0.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-137-0.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-137-0.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-137-0.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-137-0.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-137-0.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-137-0.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-137-0.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------------------------------ WARNING: no policy specified for ldap/ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy WARNING: no policy specified for testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.87 | |
No log output captured. | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_missing_user | 1.22 | |
------------------------------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-137-0.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-137-0.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-137-0.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------------------------------ WARNING: 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.49 | |
No log output captured. | |||
Passed | suites/gssapi/simple_gssapi_test.py::test_rejected_mech | 0.32 | |
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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/import/regression_test.py::test_replay_import_operation | 32.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:90 Exporting LDIF online... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:49 Run. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:100 Importing LDIF online, should raise operation error. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:111 Looping. Tried 1 times so far. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:53 Adding users. [32mINFO [0m tests.suites.import.regression_test:regression_test.py:115 Importing LDIF online | |||
Passed | suites/import/regression_test.py::test_import_be_default | 11.35 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:140 Adding suffix:dc=default,dc=com and backend: default... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:145 Create LDIF file and import it... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:150 Stopping the server and running offline import... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:156 Verifying entry count after import... [32mINFO [0m tests.suites.import.regression_test:regression_test.py:162 Test PASSED | |||
Passed | suites/import/regression_test.py::test_del_suffix_import | 6.85 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:179 Adding suffix:dc=importest1,dc=com and backend: importest1 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:184 Create LDIF file and import it [32mINFO [0m tests.suites.import.regression_test:regression_test.py:190 Stopping the server and running offline import [32mINFO [0m tests.suites.import.regression_test:regression_test.py:195 Deleting suffix-dc=importest2,dc=com [32mINFO [0m tests.suites.import.regression_test:regression_test.py:198 Adding the same database-importest1 after deleting it | |||
Passed | suites/import/regression_test.py::test_del_suffix_backend | 7.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:217 Adding suffix:dc=importest2,dc=com and backend: importest2 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:222 Create LDIF file and import it [32mINFO [0m lib389:tasks.py:469 Import task import_03022020_201741 for file /var/lib/dirsrv/slapd-standalone1/ldif/suffix_del2.ldif completed successfully [32mINFO [0m tests.suites.import.regression_test:regression_test.py:230 Deleting suffix-dc=importest2,dc=com [32mINFO [0m tests.suites.import.regression_test:regression_test.py:233 Adding the same database-importest2 after deleting it [32mINFO [0m tests.suites.import.regression_test:regression_test.py:236 Checking if server can be restarted after re-adding the same database | |||
Passed | suites/import/regression_test.py::test_import_duplicate_dn | 15.89 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.import.regression_test:regression_test.py:262 Delete the previous error logs [32mINFO [0m tests.suites.import.regression_test:regression_test.py:265 Create import file [32mINFO [0m tests.suites.import.regression_test:regression_test.py:288 Import ldif with duplicate entry [1m[31mERROR [0m lib389:tasks.py:466 Error: import task import_03022020_201752 for file /var/lib/dirsrv/slapd-standalone1/ldif/data.ldif exited with -23 [32mINFO [0m tests.suites.import.regression_test:regression_test.py:291 Restart the server to flush the logs [32mINFO [0m tests.suites.import.regression_test:regression_test.py:294 Error log should not have "unable to flush" message [32mINFO [0m tests.suites.import.regression_test:regression_test.py:297 Error log should have "Duplicated DN detected" message | |||
Passed | suites/lib389/config_compare_test.py::test_config_compare | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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.18 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.26 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_mul_derive_mult_dn | 0.26 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_dn | 0.02 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_rdn | 0.26 | |
No log output captured. | |||
Passed | suites/lib389/dsldapobject/dn_construct_test.py::test_sin_derive_single_dn | 0.26 | |
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.27 | |
No log output captured. | |||
Passed | suites/lib389/idm/user_compare_i2_test.py::test_user_compare_i2 | 0.86 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/lib389/idm/user_compare_st_test.py::test_user_compare | 0.93 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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] | 1.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.35 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logmaxdiskspace-invalid_vals2-valid_vals2] | 0.11 | |
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.10 | |
No log output captured. | |||
Passed | suites/logging/logging_config_test.py::test_logging_digit_config[logrotationsynchour-invalid_vals6-valid_vals6] | 0.10 | |
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.09 | |
No log output captured. | |||
Passed | suites/mapping_tree/be_del_and_default_naming_attr_test.py::test_be_delete | 0.91 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. | |||
Passed | suites/mapping_tree/referral_during_tot_init_test.py::test_referral_during_tot | 7.68 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists ------------------------------Captured stderr call------------------------------ [02/Mar/2020:20:19:58.783674211 -0500] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_with_repl | 95.72 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:470 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2124 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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.31 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 53.57 | |
-------------------------------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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_group | 6.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.24 | |
-------------------------------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 | 9.69 | |
-------------------------------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.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:43 connection: ['1:20200303012437Z: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:47 version :: ['1:20200303012437Z:6:5:-:cn=directory manager:0:0:0:1:ip=127.0.0.1'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:51 threads: ['24'],currentconnectionsatmaxthreads: ['0'],maxthreadsperconnhits: ['0'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:55 nbackends: ['1'], backendmonitordn: ['cn=monitor,cn=userRoot,cn=ldbm database,cn=plugins,cn=config'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:59 opsinitiated: ['12'], opscompleted: ['13'] [32mINFO [0m tests.suites.monitor.monitor_test:monitor_test.py:63 dtablesize: ['1024'],readwaiters: ['0'],entriessent: ['14'],bytessent: ['1098'],currenttime: ['20200303012438Z'],starttime: ['20200303012437Z'] | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[6-5] | 0.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:196 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 0x7fc2c329ccd0>]. [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.22 | |
-------------------------------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:196 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 0x7fc2c327a110>]. [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.67 | |
-------------------------------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:196 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 0x7fc2c2583850>]. [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] | 8.69 | |
-------------------------------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:170 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:170 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.69 | |
-------------------------------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:170 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:170 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.03 | |
-------------------------------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:170 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:170 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.13 | |
-------------------------------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:170 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:170 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.24 | |
-------------------------------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:170 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:170 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.06 | |
-------------------------------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:196 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 0x7fc2c34cbf90>, <lib389._controls.SSSRequestControl object at 0x7fc2c34cb510>]. [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.43 | |
-------------------------------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 | 33.71 | |
-------------------------------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:501 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:501 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:501 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[dns = "localhost.localdomain"] | 5.25 | |
-------------------------------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:547 Back up current suffix ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:550 Add test ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:556 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:559 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:563 Initiate three searches with a paged results control [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 1 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c344d290>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 2 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c344d290>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 3 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c344d290>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:570 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:573 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 = "127.0.0.1"] | 3.81 | |
-------------------------------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:547 Back up current suffix ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:550 Add test ACI [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:556 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:559 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:563 Initiate three searches with a paged results control [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 1 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c32d1f50>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 2 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c32d1f50>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:565 3 search [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c32d1f50>]. [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:568 100 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:570 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:573 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.01 | |
-------------------------------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:606 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:609 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:614 Iteration 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:614 Iteration 1 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:614 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.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:661 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:664 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] | 3.97 | |
-------------------------------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:661 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:664 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.40 | |
-------------------------------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:705 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:708 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.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:170 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:754 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2edde90>]. [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:762 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:170 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.47 | |
-------------------------------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:170 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:170 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:817 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:828 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2be449550>]. [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:830 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:170 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:170 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.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:170 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:170 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:817 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:824 Expect to fail with SIZELIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2fcbf10>]. [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:170 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:170 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.29 | |
-------------------------------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:170 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:170 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:170 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:170 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:889 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:896 Expect to fail with ADMINLIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2be63ea90>]. [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:170 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:170 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:170 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:170 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.26 | |
-------------------------------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:170 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:170 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:170 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:170 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:889 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:900 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2666c10>]. [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:902 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:170 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:170 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:170 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:170 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.26 | |
-------------------------------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:170 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:170 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:170 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:170 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:963 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:970 Expect to fail with ADMINLIMIT_EXCEEDED [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2d18f10>]. [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:170 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:170 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:170 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:170 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] | 4.16 | |
-------------------------------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:170 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:170 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:170 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:170 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:963 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:974 Expect to pass [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c3469550>]. [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:976 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:170 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:170 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:170 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:170 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 | 1.11 | |
-------------------------------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:196 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 0x7fc2c2f90c10>, <ldap.controls.simple.GetEffectiveRightsControl object at 0x7fc2c2f90850>]. [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:1014 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1016 Check for attributeLevelRights [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1019 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 | 11.39 | |
-------------------------------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:1050 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:196 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 0x7fc2c2f8a790>]. [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:1061 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1064 Restart the server to flush the logs [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1070 Assert that last pr_cookie == -1 and others pr_cookie == 0 [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1075 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] | 1.85 | |
-------------------------------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:1108 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2f87d10>]. [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:1115 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1118 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] | 1.04 | |
-------------------------------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:170 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:1108 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2c2fa2350>]. [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:1115 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1118 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:170 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.06 | |
-------------------------------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:170 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:1108 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:196 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 0x7fc2be462d10>]. [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:1115 20 results [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1118 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:170 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] | 0.84 | |
-------------------------------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:170 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:1153 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1156 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1171 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:170 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] | 0.81 | |
-------------------------------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:170 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:1153 Set user bind [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1156 Create simple paged results control instance [32mINFO [0m tests.suites.paged_results.paged_results_test:paged_results_test.py:1171 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:170 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1'. Modified suffix - cn=config. | |||
Passed | suites/password/password_test.py::test_password_delete_specific_password | 1.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.40 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.07 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_modify | 0.14 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_group | 0.14 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_config_validation | 0.27 | |
No log output captured. | |||
Passed | suites/password/pwdModify_test.py::test_pwd_modify_with_different_operation | 15.76 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.18 | |
-------------------------------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.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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[off-off-UNWILLING_TO_PERFORM] | 2.24 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:149 Set passwordChange to "off" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:156 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:165 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:177 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-on-False] | 2.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:149 Set passwordChange to "off" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:156 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:165 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:177 Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-on-False] | 2.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:149 Set passwordChange to "on" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:156 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:165 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:177 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:214 Set passwordminage to "10" - ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:219 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:223 Set passwordminage to "10" - cn=config [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:228 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:234 Bind as user and modify userPassword straight away after previous change [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:239 Wait 12 second [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:243 Bind as user and modify userPassword [32mINFO [0m tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:251 Bind as DM | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_must_change | 2.23 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.54 | |
-------------------------------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.43 | |
-------------------------------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.55 | |
-------------------------------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.19 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.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 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.07 | |
-------------------------------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_syntax_test.py::test_basic | 10.20 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:96 Invalid password correctly rejected by passwordMinLength: length too short [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 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:96 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:96 Invalid password correctly rejected by passwordMaxRepeats: too many repeating characters [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 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:96 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:96 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:96 Invalid password correctly rejected by passwordDictCheck: Password found in dictionary [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordPalindrome: Password is palindrome [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxSeqSets: Max montonic sequence is not allowed [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:96 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry [32mINFO [0m tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:285 pwdPolicy tests PASSED | |||
Passed | suites/password/pwdPolicy_token_test.py::test_token_lengths | 4.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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: {'desc': 'Constraint violation', '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: {'desc': 'Constraint violation', '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: {'desc': 'Constraint violation', 'info': 'invalid password syntax - password based off of user entry'} | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[ ] | 0.18 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.50 | |
-------------------------------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.27 | |
-------------------------------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.10 | |
-------------------------------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:261 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:268 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.60 | |
-------------------------------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:306 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:312 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.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 passwordWarning to 3600 [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:306 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:315 (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.27 | |
-------------------------------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: 20200305013002Z [32mINFO [0m tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:357 New passwordExpirationTime: 20200203013002Z [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({'desc': 'Invalid credentials', '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:380 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.13 | |
-------------------------------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:409 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.21 | |
-------------------------------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:456 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.12 | |
-----------------------------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.15 | |
-------------------------------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 | 0.14 | |
No log output captured. | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CLEAR] | 0.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.16 | |
-------------------------------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.07 | |
-------------------------------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.06 | |
-------------------------------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.17 | |
-------------------------------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.30 | |
-------------------------------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.06 | |
-------------------------------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.06 | |
-------------------------------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.09 | |
-------------------------------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.05 | |
-------------------------------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.08 | |
-------------------------------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.05 | |
-------------------------------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.15 | |
-------------------------------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.23 | |
-------------------------------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 | 3.06 | |
-------------------------------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.20 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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_history_test.py::test_basic | 7.83 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:73 Configured password policy. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:100 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:131 Correct number of passwords found in history. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:142 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:152 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:162 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:184 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:197 Configured passwordInHistory to 0. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:213 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:229 Configured passwordInHistory to 2. [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:242 Password change correctly rejected [32mINFO [0m tests.suites.password.pwp_history_test:pwp_history_test.py:256 Test suite PASSED. | |||
Passed | suites/password/regression_test.py::test_pwp_local_unlock | 4.35 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:64 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to on [32mINFO [0m tests.suites.password.regression_test:regression_test.py:71 Configure subtree password policy for ou=people,dc=example,dc=com [32mINFO [0m tests.suites.password.regression_test:regression_test.py:94 Adding user-uid=UIDpwtest1,ou=people,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:133 Verify user can bind... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:136 Test passwordUnlock default - user should be able to reset password after lockout [32mINFO [0m tests.suites.password.regression_test:regression_test.py:147 Verify account is locked [32mINFO [0m tests.suites.password.regression_test:regression_test.py:151 Wait for lockout duration... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:154 Check if user can now bind with correct password | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[SNpwtest1] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[UIDpwtest1] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[MAILpwtest1@redhat.com] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[GNpwtest1] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZZ] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZCNpwtest1] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1Z] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1Z] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZ] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 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:179 Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZ] | 0.14 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1ZZZ] | 0.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:179 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1] | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[SNpwtest1] | 0.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[UIDpwtest1] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[MAILpwtest1@redhat.com] | 0.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_global_vs_local[GNpwtest1] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZZ] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZCNpwtest1] | 0.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 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:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1Z] | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1] | 0.41 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZ] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with CNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1ZZ] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZ] | 0.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1ZZZ] | 0.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.20 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:207 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off [32mINFO [0m tests.suites.password.regression_test:regression_test.py:212 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/password/regression_test.py::test_unhashed_pw_switch | 32.14 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.password.regression_test:regression_test.py:253 Enable plugins... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:268 create users and group... [32mINFO [0m tests.suites.password.regression_test:regression_test.py:50 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db [32mINFO [0m tests.suites.password.regression_test:regression_test.py:51 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db'] [32mINFO [0m tests.suites.password.regression_test:regression_test.py:50 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db [32mINFO [0m tests.suites.password.regression_test:regression_test.py:51 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db'] [32mINFO [0m tests.suites.password.regression_test:regression_test.py:50 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db [32mINFO [0m tests.suites.password.regression_test:regression_test.py:51 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/ba8d0f86-5cee11ea-934a8999-22da700e_5e5db37c000000010000.db'] | |||
Passed | suites/password/series_of_bugs_test.py::test_local_password_policy | 0.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/password/series_of_bugs_test.py::test_admin_user_to_perform_password_update | 1.53 | |
No log output captured. | |||
Passed | suites/password/series_of_bugs_test.py::test_passwordexpirationtime_attribute | 3.06 | |
No log output captured. | |||
Passed | suites/plugins/acceptance_test.py::test_acctpolicy | 15.83 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_attruniq | 17.78 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_automember | 25.31 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_dna | 17.11 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_linkedattrs | 22.35 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_memberof | 33.73 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_mep | 18.36 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_passthru | 22.02 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_referint | 12.86 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_retrocl | 21.68 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_rootdn | 34.54 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/accpol_test.py::test_glact_inact | 27.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.49 | |
-------------------------------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.41 | |
-------------------------------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.49 | |
-------------------------------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 | 84.47 | |
-------------------------------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.02 | |
-------------------------------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 | 45.87 | |
-------------------------------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 | 51.03 | |
-------------------------------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.05 | |
------------------------------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.29 | |
-------------------------------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.34 | |
-------------------------------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.32 | |
-------------------------------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.11 | |
-------------------------------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.08 | |
-------------------------------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.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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: [02/Mar/2020:20:47:58.679416773 -0500] - 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.76 | |
-------------------------------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 - [02/Mar/2020:20:48:03.267817543 -0500] - 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 - [02/Mar/2020:20:48:03.271763697 -0500] - 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 - [02/Mar/2020:20:48:03.274369978 -0500] - 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 - [02/Mar/2020:20:48:03.277010608 -0500] - 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 - [02/Mar/2020:20:48:03.279611901 -0500] - 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.38 | |
-------------------------------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.95 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.92 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 5.24 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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_betxnpostoperation_replace | 4.66 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.41 | |
-------------------------------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.10 | |
-------------------------------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.02 | |
-------------------------------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.67 | |
-------------------------------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.17 | |
-------------------------------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.26 | |
-------------------------------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.51 | |
-------------------------------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.04 | |
-------------------------------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.02 | |
-------------------------------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.04 | |
-------------------------------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.08 | |
-------------------------------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.07 | |
-------------------------------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.16 | |
-------------------------------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.17 | |
-------------------------------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.16 | |
-------------------------------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.19 | |
-------------------------------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.09 | |
-------------------------------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.04 | |
-------------------------------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.13 | |
-------------------------------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.23 | |
-------------------------------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:2750 Correctly rejected invalid objectclass [32mINFO [0m tests.suites.plugins.memberof_test:memberof_test.py:2820 Test complete. | |||
Passed | suites/plugins/pluginpath_validation_test.py::test_pluginpath_validation | 0.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.53 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:61 Initializing root DN test suite... [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:71 test_rootdn_init: Initialized root DN test suite. [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:103 Running test_rootdn_access_specific_time... | |||
Passed | suites/plugins/rootdn_plugin_test.py::test_rootdn_config_validate | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:37 Cleaning up the config area -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:520 Add just "rootdn-open-time" | |||
Passed | suites/psearch/psearch_test.py::test_psearch | 2.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.31 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA] | 0.03 | |
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.04 | |
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.06 | |
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.99 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_pbkdf2_sha256 | 4.37 | |
No log output captured. | |||
Passed | suites/pwp_storage/storage_test.py::test_check_ssha512 | 6.02 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/referint_plugin/rename_test.py::test_rename_large_subtree | 175.84 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/acceptance_test.py::test_add_entry | 10.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modify_entry | 3.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:43 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:126 Modifying entry uid=mmrepl_test,dc=example,dc=com - add operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:136 Modifying entry uid=mmrepl_test,dc=example,dc=com - replace operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:144 Modifying entry uid=mmrepl_test,dc=example,dc=com - delete operation | |||
Passed | suites/replication/acceptance_test.py::test_delete_entry | 10.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:43 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:166 Deleting entry uid=mmrepl_test,dc=example,dc=com during the test | |||
Passed | suites/replication/acceptance_test.py::test_modrdn_entry[0] | 20.06 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:190 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:209 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:39 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:190 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:209 Remove entry with new RDN uid=newrdn,dc=example,dc=com | |||
Passed | suites/replication/acceptance_test.py::test_modrdn_after_pause | 14.39 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:235 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:250 Pause all replicas [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:253 Modify entry RDN uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:261 Resume all replicas [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:264 Wait for replication to happen [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:271 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:293 Modify nsds5replicastripattrs with b'modifiersname modifytimestamp' [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:296 Check nsds5replicastripattrs for b'modifiersname modifytimestamp' | |||
Passed | suites/replication/acceptance_test.py::test_new_suffix | 11.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:60 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-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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:60 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-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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:60 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-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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:60 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-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/acceptance_test.py::test_many_attrs | 20.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:351 Modifying entry uid=mmrepl_test,dc=example,dc=com - 10 add operations [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:355 Check that everything was properly replicated after an add operation [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:360 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:364 Check that everything was properly replicated after a delete operation | |||
Passed | suites/replication/acceptance_test.py::test_double_delete | 10.03 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:43 Deleting entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:384 Deleting entry uid=mmrepl_test,dc=example,dc=com from master1 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:387 Deleting entry uid=mmrepl_test,dc=example,dc=com from master2 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:391 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:393 Make searches to check if server is alive | |||
Passed | suites/replication/acceptance_test.py::test_password_repl_error | 23.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:39 Adding entry uid=mmrepl_test,dc=example,dc=com -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:414 Clean the error log [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:417 Set replication loglevel [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:420 Modifying entry uid=mmrepl_test,dc=example,dc=com - change userpassword on master 2 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:428 Restart the servers to flush the logs [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:437 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:1020 Failed to add replication agreement: {'desc': 'Server is unwilling to perform'} [32mINFO [0m lib389:acceptance_test.py:462 Invalid repl agreement correctly rejected | |||
Passed | suites/replication/acceptance_test.py::test_warining_for_invalid_replica | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:492 Set nsds5ReplicaBackoffMin to 20 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:495 Set nsds5ReplicaBackoffMax to 10 [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:497 Resetting configuration: nsds5ReplicaBackoffMin [32mINFO [0m tests.suites.replication.acceptance_test:acceptance_test.py:499 Check the error log for the error | |||
Passed | suites/replication/cascading_test.py::test_basic_with_hub | 17.13 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:470 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2124 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working | |||
Passed | suites/replication/changelog_test.py::test_cldump_files_removed | 2.41 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:209 Remove .ldif files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:209 Remove .done files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:48 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:61 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:68 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:272 Use cl-dump perl script without -l option : no generated ldif files should remain in /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:274 Command used : ['/usr/bin/cl-dump', '-h', 'localhost', '-p', 'invalid port', '-D', 'cn=Directory Manager', '-w', 'password'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:277 output message : b'Can\'t connect to localhost:invalid port as "cn=Directory Manager"\n' [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:282 Use cl-dump perl script without -l option : no generated ldif files should remain in /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:284 Command used : ['/usr/bin/cl-dump', '-h', 'localhost', '-p', '39001', '-D', 'cn=Directory Manager', '-w', 'password'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:289 Wait for all cl-dump files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:292 Check if cl-dump generated .ldif.done files are present - should not [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:298 All cl-dump generated .ldif files have been successfully removed from /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:302 Use cl-dump perl script with -l option : generated ldif files should be kept in /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:304 Command used : ['/usr/bin/cl-dump', '-h', 'localhost', '-p', '39001', '-D', 'cn=Directory Manager', '-w', 'password', '-l'] [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:309 Wait for all cl-dump files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:312 Check if cl-dump generated .ldif.done files are present - should be [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:316 Success : ldif file /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif.done is present | |||
Passed | suites/replication/changelog_test.py::test_dsconf_dump_changelog_files_removed | 3.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:209 Remove .ldif files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:209 Remove .done files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:219 Existing changelog .done file: /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif.done removed [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:48 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:61 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:68 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:369 Use dsconf dump-changelog with invalid parameters [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:371 Command used : ['python', '/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:374 output message : b'Error: Invalid credentials - Invalid credentials\n' [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:379 Use dsconf replication changelog without -l option: no generated ldif files should be present in /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:381 Command used : ['python', '/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:386 Wait for all dsconf dump-changelog files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:389 Check if dsconf dump-changelog generated .ldif.done files are present - should not [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:395 All dsconf dump-changelog generated .ldif files have been successfully removed from /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:398 Use dsconf replication changelog with -l option: generated ldif files should be kept in /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:400 Command used : ['python', '/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:405 Wait for all dsconf dump-changelog files to be generated [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:408 Check if dsconf dump-changelog generated .ldif.done files are present - should be [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:412 Success : ldif file /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif.done is present | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:435 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:48 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:61 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:68 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:75 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:90 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:92 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:95 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:109 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:114 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:120 Valid ldap operations: {'modify', 'modrdn', 'add', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:121 Ldap operations found: {'modrdn', 'add', 'modify', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog_online_backup | 6.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:462 Run db2bak script to take database backup [32mINFO [0m lib389:tasks.py:589 Backup task backup_03022020_205816 completed successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:471 Database backup is created successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:476 Run bak2db to restore directory server [32mINFO [0m lib389:tasks.py:643 Restore task restore_03022020_205818 completed successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:483 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:48 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:61 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:68 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:75 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:90 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:92 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:95 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:109 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:114 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:120 Valid ldap operations: {'modify', 'modrdn', 'add', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:121 Ldap operations found: {'modrdn', 'add', 'modify', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_verify_changelog_offline_backup | 6.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:512 Run db2bak to take database backup [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:519 Run bak2db to restore directory server [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:529 Database backup is created successfully [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:534 LDAP operations add, modify, modrdn and delete [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:48 Adding user replusr [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:61 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:68 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:75 Dump changelog using nss5task and check if ldap operations are logged [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:79 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:90 No existing changelog ldif files present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:92 Running nsds5task to dump changelog database to a file [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:95 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/changelogdb [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:99 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/changelogdb/68e68403-5cf211ea-893f8dda-5edf4b83.ldif [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:109 Checking changelog ldif file for ldap operations [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:114 Checking if all required changetype operations are present [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:120 Valid ldap operations: {'modify', 'modrdn', 'add', 'delete'} [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:121 Ldap operations found: {'modrdn', 'add', 'modify', 'delete'} | |||
Passed | suites/replication/changelog_test.py::test_changelog_maxage | 0.82 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:135 Testing Ticket 47669 - Test duration syntax in the changelogs [32mINFO [0m lib389:changelog_test.py:138 Bind as cn=Directory Manager -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:556 1. Test nsslapd-changelogmaxage in cn=changelog5,cn=config [32mINFO [0m lib389:changelog_test.py:559 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogmaxage: -123 -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogmaxage: -123 to cn=changelog5,cn=config: error Server is unwilling to perform [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogmaxage: xyz -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogmaxage: xyz to cn=changelog5,cn=config: error Server is unwilling to perform | |||
Passed | suites/replication/changelog_test.py::test_ticket47669_changelog_triminterval | 0.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:589 2. Test nsslapd-changelogtrim-interval in cn=changelog5,cn=config [32mINFO [0m lib389:changelog_test.py:592 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogtrim-interval: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogtrim-interval: -123 -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogtrim-interval: -123 to cn=changelog5,cn=config: error Server is unwilling to perform [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogtrim-interval: xyz -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogtrim-interval: xyz to cn=changelog5,cn=config: error Server is unwilling to perform | |||
Passed | suites/replication/changelog_test.py::test_changelog_compactdbinterval | 0.07 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:623 3. Test nsslapd-changelogcompactdb-interval in cn=changelog5,cn=config [32mINFO [0m lib389:changelog_test.py:626 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogcompactdb-interval: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogcompactdb-interval: -123 -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogcompactdb-interval: -123 to cn=changelog5,cn=config: error Server is unwilling to perform [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogcompactdb-interval: xyz -- invalid [1m[31mERROR [0m tests.suites.replication.changelog_test:changelog_test.py:177 Expectedly failed to add nsslapd-changelogcompactdb-interval: xyz to cn=changelog5,cn=config: error Server is unwilling to perform | |||
Passed | suites/replication/changelog_test.py::test_retrochangelog_maxage | 0.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:657 4. Test nsslapd-changelogmaxage in cn=Retro Changelog Plugin,cn=plugins,cn=config [32mINFO [0m lib389:changelog_test.py:660 Bind as cn=Directory Manager [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 12345 -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 10s -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 30M -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 12h -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 2D -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:164 Test nsslapd-changelogmaxage: 4w -- valid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogmaxage: -123 -- invalid [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:171 Test nsslapd-changelogmaxage: xyz -- invalid [32mINFO [0m lib389:changelog_test.py:672 ticket47669 was successfully verified. | |||
Passed | suites/replication/changelog_test.py::test_retrochangelog_trimming_crash | 22.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_test:changelog_test.py:696 1. Test retroCL trimming crash in cn=Retro Changelog Plugin,cn=plugins,cn=config [32mINFO [0m lib389:changelog_test.py:700 ticket50736 start verification [32mINFO [0m lib389:changelog_test.py:716 ticket 50736 was successfully verified. | |||
Passed | suites/replication/changelog_trimming_test.py::test_max_age | 15.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:68 Testing changelog triming interval with max age... | |||
Passed | suites/replication/changelog_trimming_test.py::test_max_entries | 14.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:107 Testing changelog triming interval with max entries... | |||
Passed | suites/replication/cleanallruv_max_tasks_test.py::test_max_tasks | 48.97 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created | |||
Passed | suites/replication/cleanallruv_test.py::test_clean | 2.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:203 Running test_clean... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:206 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:210 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:220 test_clean: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:224 test_clean PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_clean_restart | 24.24 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:255 Running test_clean_restart... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:258 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:266 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:291 test_clean_restart: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:295 test_clean_restart PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_clean_force | 28.78 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:321 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:339 test_clean: run the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:349 test_clean_force: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:353 test_clean_force PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort | 6.95 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:375 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:380 test_abort: stop master 2 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:384 test_abort: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:399 test_abort: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:405 test_abort: start master 2 to begin the restore process... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:408 test_abort PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort_restart | 28.64 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:440 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:445 test_abort_restart: stop master 3 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:449 test_abort_restart: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:464 test_abort_abort: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:486 test_abort_restart PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_abort_certify | 35.78 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:508 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:514 test_abort_certify: stop master 2 to freeze the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:518 test_abort_certify: add the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:530 test_abort_certify: abort the cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:534 test_abort_certify... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:541 test_abort_certify: start master 2 to allow the abort task to finish... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:550 test_abort_certify: check master 1 no longer has a cleanAllRUV task... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:555 test_abort_certify PASSED, restoring master 4... | |||
Passed | suites/replication/cleanallruv_test.py::test_stress_clean | 56.29 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- 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:596 test_stress_clean: allow some time for replication to get flowing... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:602 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:618 test_stress_clean: wait for all the updates to finish... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:625 test_stress_clean: check if all the replicas have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:629 test_stress_clean: PASSED, restoring master 4... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:632 Sleep for 120 seconds to allow replication to complete... [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/cleanallruv_test.py::test_multiple_tasks_with_force | 34.33 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:152 Wait a bit before the reset - it is required for the slow machines [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:154 -------------- BEGIN RESET of m4 ----------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [35mDEBUG [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:180 -------------- FINISH RESET of m4 ----------------- -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:669 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:688 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" on... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:697 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" off... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:716 test_multiple_tasks_with_force: check all the masters have been cleaned... [32mINFO [0m tests.suites.replication.cleanallruv_test:cleanallruv_test.py:720 test_abort: check master 1 no longer has a cleanAllRUV task... | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_add_modrdn | 17.99 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:209 Test create - modrdn [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/conflict_resolve_test.py::TestTwoMasters::test_complex_add_modify_modrdn_delete | 85.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:284 Test add-del on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:300 Test add-mod on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:316 Test add-modrdn on M1 and add on M2 [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:332 Test multiple add, modrdn [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:340 Add - del on both masters [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:347 Test modrdn - modrdn [32mINFO [0m tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:352 Test modrdn - del [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/encryption_cl5_test.py::test_algorithm_unhashed[AES] | 46.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63702 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:46 Configuring changelog encryption:master1 for: AES [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] | |||
Passed | suites/replication/encryption_cl5_test.py::test_algorithm_unhashed[3DES] | 51.45 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:46 Configuring changelog encryption:master1 for: 3DES [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/changelogdb/aac4f986-5cf511ea-b6259c73-c77ceb87_5e5dbf24000000010000.db'] [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:61 Changelog dbfile file exist: /var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db [32mINFO [0m tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:62 Running dbscan -f to check unhashed#user#password attr [32mINFO [0m lib389:__init__.py:3069 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/changelogdb/adbfea03-5cf511ea-9541f6ad-9c12dbe3_5e5dbf24000000010000.db'] | |||
Passed | suites/replication/regression_test.py::test_special_symbol_replica_agreement | 1.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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}AAAIAFhwM6vW7ao6vBnGjcIWS9UceAZiaj5m9FZtrVrs1aGylYh1brxLvXInvolBXOnd2lUXm+O0onSaygDxmLPuVY2QrpMcXJvbB+EV62MNELhQSS61ifP+FmhLt0HNKcnDq/itGkLcqf/F1VwOWcVoDT+gkYzMlxNiNZhOgjWGNH8x7H33rUYnk+7EOKo6u+T64G1s82LJ8GkGJh0gZc0IKCYaSVQHtLedjE19sDkE2VojoVHIDblfVjte4Uxs64XMo63pYVRb9Af2klTIKhbxdc1X3V1oW8CxDWUXyLgZoaVe7v1/+KJDK87ZUV2765MJ0SXY2dclBiuWkLa2ss+nR9C+hOsGQf1yj8UES3bM7dfDMvAAe8K24wjISAZXjAA53BGH0dL0zsc3IIW3+xi/Rj/P3+APoL38e/lS0fwMlmL+ [32mINFO [0m lib389:agreement.py:1163 Starting total init cn=-3meTo_ci-vm-10-0-137-0.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.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:130 Adding a test entry user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:257 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:260 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master2 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_repl_modrdn | 7.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:303 Add test entries - Add 3 OUs and 2 same users under 2 different OUs [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:327 Stop Replication [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:330 Apply modrdn to M1 - move test user from OU A -> C [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:333 Apply modrdn on M2 - move test user from OU B -> C [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:336 Start Replication [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:339 Wait for sometime for repl to resume [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:343 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:350 Check that the replication is working fine both ways, M1 <-> M2 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_password_repl_error | 16.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:130 Adding a test entry user -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:374 Clean the error log [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:377 Set replication loglevel [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:380 Modifying entry uid=testuser,ou=People,dc=example,dc=com - change userpassword on master 1 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:387 Restart the servers to flush the logs [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:392 Check that password works on master 2 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:396 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:399 Set the default loglevel | |||
Passed | suites/replication/regression_test.py::test_invalid_agmt | 2.65 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_fetch_bindDnGroup | 22.36 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | suites/replication/regression_test.py::test_plugin_bind_dn_tracking_and_replication | 0.95 | |
No log output captured. | |||
Passed | suites/replication/regression_test.py::test_cleanallruv_repl | 118.23 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:668 Change the error log levels for all masters [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:672 Get the replication agreements for all 3 masters [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:677 Get the changelog enteries for M1 and M2 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:681 Modify nsslapd-changelogmaxage=30 and nsslapd-changelogtrim-interval=5 for M1 and M2 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:685 Add test users to 3 masters [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:tasks.py:1370 cleanAllRUV task (task-03022020_212718) completed successfully [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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.17 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | suites/replication/regression_test.py::test_moving_entry_make_online_init_fail | 1.40 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-master1 removed. Instance slapd-master2 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:835 Generating DIT_0 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:838 Created entry: ou=OU0, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:843 Created entry: ou=OU0, ou=OU0, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:180 Create password policy for subtree ou=OU0,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:852 Turning tuser0 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:852 Turning tuser2 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:852 Turning tuser4 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:852 Turning tuser6 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:852 Turning tuser8 into a tombstone entry [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:855 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:857 Generating DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:860 Created entry: ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:864 Created entry: ou=OU1, ou=OU1, dc=example, dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:180 Create password policy for subtree ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:868 Moving ou=OU0,ou=OU0,dc=example,dc=com to DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:871 Moving ou=OU0,dc=example,dc=com to DIT_1 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:878 Moving USERS to ou=OU0,ou=OU0,ou=OU1,dc=example,dc=com [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:883 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:885 Run Initialization. [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:894 m1entry count - 42 [32mINFO [0m tests.suites.replication.regression_test:regression_test.py:895 m2entry count - 42 | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaType--1-4-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.72 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.07 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaId-0-65536-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.07 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaPurgeDelay--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.07 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaBindDnGroupCheckInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaTombstonePurgeInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.05 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.13 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaReleaseTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.06 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] | 0.10 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.05 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsDS5Flags--1-2-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] | 0.29 | |
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.05 | |
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.29 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] | 0.30 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.29 | |
No log output captured. | |||
Passed | suites/replication/replica_config_test.py::test_same_attr_yields_same_return_code | 0.72 | |
No log output captured. | |||
Passed | suites/replication/ruvstore_test.py::test_ruv_entry_backup | 8.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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/single_master_test.py::test_mail_attr_repl | 14.99 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working | |||
Passed | suites/replication/single_master_test.py::test_lastupdate_attr_before_init | 0.64 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:38901 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:38902 is was created | |||
Passed | suites/replication/tombstone_fixup_test.py::test_precise_tombstone_purging | 24.76 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:538 Export task export_03022020_213147 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:469 Import task import_03022020_213151 for file /var/lib/dirsrv/slapd-master1/ldif/export.ldif completed successfully [32mINFO [0m lib389:tasks.py:910 tombstone fixup task fixupTombstone_03022020_213155 for backend userRoot completed successfully [32mINFO [0m lib389:tasks.py:910 tombstone fixup task fixupTombstone_03022020_213157 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.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 Creating replication topology. -------------------------------Captured log call-------------------------------- [32mINFO [0m Tombstone:tombstone.py:165 Reviving nsuniqueid=32f7ce87-5cf711ea-b2b0d4ab-5b58b5b7,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.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_multi_value | 0.01 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr0] | 0.00 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr1] | 0.00 | |
No log output captured. | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr2] | 0.00 | |
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.04 | |
-------------------------------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:202 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/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr1] | 20.09 | |
-------------------------------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:202 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.09 | |
-------------------------------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:202 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 <= 7 <= 11 | |||
Passed | suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr3] | 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:202 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 <= 7 <= 11 | |||
Passed | suites/resource_limits/fdlimits_test.py::test_fd_limits | 1.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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/roles/basic_test.py::test_filterrole | 1.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.16 | |
No log output captured. | |||
Passed | suites/roles/basic_test.py::test_nestedrole | 0.24 | |
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:106 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:74 Test we have some of the default mechanisms [32mINFO [0m lib389:allowed_mechs_test.py:82 Edit mechanisms to allow just PLAIN [32mINFO [0m lib389:allowed_mechs_test.py:90 Restart server and make sure we still have correct allowed mechs [32mINFO [0m lib389:allowed_mechs_test.py:99 Edit mechanisms to allow just PLAIN and EXTERNAL [32mINFO [0m lib389:allowed_mechs_test.py:107 Edit mechanisms to allow just PLAIN and GSSAPI [32mINFO [0m lib389:allowed_mechs_test.py:125 Edit mechanisms to allow just PLAIN, GSSAPI, and ANONYMOUS [32mINFO [0m lib389:allowed_mechs_test.py:145 Edit mechanisms to allow just PLAIN and ANONYMOUS [32mINFO [0m lib389:allowed_mechs_test.py:164 Reset allowed mechaisms [32mINFO [0m lib389:allowed_mechs_test.py:168 Check that we have the original set of mechanisms [32mINFO [0m lib389:allowed_mechs_test.py:173 Check that we have the original set of mechanisms after a restart | |||
Passed | suites/sasl/plain_test.py::test_basic_feature | 13.45 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/schema/eduperson_test.py::test_account_locking | 0.08 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:1139 Schema Reload task (task-03022020_213815) 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 | 2.11 | |
-------------------------------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:1137 Error: Schema Reload task (task-03022020_213818) exited with -2 [32mINFO [0m tests.suites.schema.schema_reload_test:schema_reload_test.py:137 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.43 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 already exists [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:183 test_schema_replication_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7fc2c221a550> (master <lib389.DirSrv object at 0x7fc2c1f62050>, consumer <lib389.DirSrv object at 0x7fc2c1543b50> -------------------------------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:223 test_schema_replication_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7fc2c221a550> (master <lib389.DirSrv object at 0x7fc2c1f62050>, consumer <lib389.DirSrv object at 0x7fc2c1543b50> [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive 0 (expected 1) [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc330000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:234 ctest_schema_replication_one onsumer_schema_csn=b'5e5dc330000000000000' [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: [37] 389-Directory/1.4.3.3 B2020.063.016 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120] ci-vm-10-0-137-0.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: [121] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [262] [02/Mar/2020:21:38:22.205684013 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [379] [02/Mar/2020:21:38:22.209088019 -0500] - 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: [520] [02/Mar/2020:21:38:22.212768003 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [661] [02/Mar/2020:21:38:22.216096808 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [774] [02/Mar/2020:21:38:22.223682039 -0500] - ERR - 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: [968] [02/Mar/2020:21:38:22.227505180 -0500] - ERR - ldbm_config_modify_entry_callback - Executing for entry (cn=config,cn=ldbm database,cn=plugins,cn=config) with flags (0) operation is internal: 32 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1109] [02/Mar/2020:21:38:22.231818066 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1286] [02/Mar/2020:21:38:22.235460558 -0500] - 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: [1427] [02/Mar/2020:21:38:22.238681568 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1572] [02/Mar/2020:21:38:22.241676950 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7685431296, process usage 23293952 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1690] [02/Mar/2020:21:38:22.244834432 -0500] - INFO - check_and_set_import_cache - Import allocates 3002121KB import cache. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1831] [02/Mar/2020:21:38:22.248084675 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1938] [02/Mar/2020:21:38:22.435565727 -0500] - INFO - bdb_import_main - import userRoot: Beginning import job... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2066] [02/Mar/2020:21:38:22.438683454 -0500] - 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: [2188] [02/Mar/2020:21:38:22.639760887 -0500] - INFO - import_producer - import userRoot: Processing file "/tmp/ldifBwZOqO.ldif" [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2329] [02/Mar/2020:21:38:22.650793250 -0500] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldifBwZOqO.ldif" (9 entries) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2452] [02/Mar/2020:21:38:23.444087791 -0500] - 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: [2562] [02/Mar/2020:21:38:23.648019306 -0500] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2676] [02/Mar/2020:21:38:23.651759343 -0500] - 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: [2798] [02/Mar/2020:21:38:23.655238296 -0500] - 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: [2955] [02/Mar/2020:21:38:23.658338278 -0500] - 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: [3075] [02/Mar/2020:21:38:23.666492902 -0500] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3199] [02/Mar/2020:21:38:23.670279077 -0500] - 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: [3330] [02/Mar/2020:21:38:23.674008512 -0500] - 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: [3462] [02/Mar/2020:21:38:23.677642499 -0500] - 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: [3592] [02/Mar/2020:21:38:23.681092248 -0500] - 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: [3734] [02/Mar/2020:21:38:23.689427854 -0500] - 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: [3873] [02/Mar/2020:21:38:23.693376571 -0500] - 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: [3975] [02/Mar/2020:21:38:23.696443978 -0500] - INFO - bdb_import_main - import userRoot: Flushing caches... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4075] [02/Mar/2020:21:38:23.699666319 -0500] - INFO - bdb_import_main - import userRoot: Closing files... [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4229] [02/Mar/2020:21:38:23.783511354 -0500] - 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: [4326] [02/Mar/2020:21:38:23.787309769 -0500] - INFO - bdb_pre_close - All database threads now stopped [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4429] [02/Mar/2020:21:38:23.971064529 -0500] - INFO - main - 389-Directory/1.4.3.3 B2020.063.016 starting up [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4537] [02/Mar/2020:21:38:24.011505076 -0500] - 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: [4645] [02/Mar/2020:21:38:24.787224120 -0500] - 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: [4802] [02/Mar/2020:21:38:24.834698680 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4919] [02/Mar/2020:21:38:24.838432912 -0500] - 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: [5076] [02/Mar/2020:21:38:24.841694610 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5233] [02/Mar/2020:21:38:24.845164318 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5346] [02/Mar/2020:21:38:24.855992850 -0500] - ERR - 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: [5540] [02/Mar/2020:21:38:24.862517322 -0500] - ERR - ldbm_config_modify_entry_callback - Executing for entry (cn=config,cn=ldbm database,cn=plugins,cn=config) with flags (0) operation is internal: 32 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5697] [02/Mar/2020:21:38:24.869308573 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5796] [02/Mar/2020:21:38:24.873015030 -0500] - NOTICE - ldbm_back_start - found 8152580k physical memory [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5889] [02/Mar/2020:21:38:24.875859653 -0500] - NOTICE - ldbm_back_start - found 7503212k available [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5993] [02/Mar/2020:21:38:24.879021654 -0500] - NOTICE - ldbm_back_start - cache autosizing: db cache: 203814k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6150] [02/Mar/2020:21:38:24.881822835 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6276] [02/Mar/2020:21:38:24.884668476 -0500] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6433] [02/Mar/2020:21:38:24.887561885 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6555] [02/Mar/2020:21:38:24.890859361 -0500] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6712] [02/Mar/2020:21:38:24.894429863 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6812] [02/Mar/2020:21:38:24.899274369 -0500] - NOTICE - ldbm_back_start - total cache size: 787721830 B; [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6969] [02/Mar/2020:21:38:24.903069863 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7077] [02/Mar/2020:21:38:24.906822147 -0500] - INFO - bdb_start - Resizing db cache size: 3074172518 -> 166964838 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7213] [02/Mar/2020:21:38:25.255337368 -0500] - 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: [7401] [02/Mar/2020:21:38:31.841719702 -0500] - 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: [7581] [02/Mar/2020:21:38:31.844924668 -0500] - 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: [7769] [02/Mar/2020:21:38:31.848118619 -0500] - 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: [7949] [02/Mar/2020:21:38:31.852300864 -0500] - 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: [8118] [02/Mar/2020:21:38:33.696367284 -0500] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-137-0:39201)". [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8302] [02/Mar/2020:21:38:33.701105580 -0500] - 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: [8447] [02/Mar/2020:21:38:33.705293311 -0500] - 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: [8464] objectclass: top [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8490] objectclass: ldapsubentry [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8520] objectclass: extensibleObject [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8542] cn: repl keep alive 1 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8727] [02/Mar/2020:21:38:36.285183970 -0500] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-137-0:39201)". Sent 12 entries. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8727] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 8727 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_two | 11.50 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc33b000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:290 test_schema_replication_two consumer_schema_csn=b'5e5dc33b000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 8728 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8939] 02/Mar/2020:21:38:51.908217542 -0500] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-137-0: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 8939 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_three | 9.38 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc345000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:341 test_schema_replication_three consumer_schema_csn=b'5e5dc345000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 8940 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8940] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 8940 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_four | 9.49 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc34e000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:390 ctest_schema_replication_four onsumer_schema_csn=b'5e5dc34e000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 8941 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8941] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 8941 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_five | 11.82 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc35a000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:453 ctest_schema_replication_five onsumer_schema_csn=b'5e5dc35a000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 8942 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9047] /Mar/2020:21:39:22.513295037 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9302] [02/Mar/2020:21:39:22.568320256 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9449] [02/Mar/2020:21:39:22.572092206 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9571] [02/Mar/2020:21:39:22.581264181 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3560002:1583203158:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9692] [02/Mar/2020:21:39:22.584194502 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc35a0000:1583203162:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9855] [02/Mar/2020:21:39:22.587262750 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc35a000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10035] [02/Mar/2020:21:39:22.590993679 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488d6000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10280] [02/Mar/2020:21:39:22.594358139 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10548] [02/Mar/2020:21:39:22.597128868 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10723] [02/Mar/2020:21:39:22.600588281 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc35a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10991] [02/Mar/2020:21:39:22.603899329 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11129] [02/Mar/2020:21:39:22.607907729 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11259] [02/Mar/2020:21:39:22.612992356 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11397] [02/Mar/2020:21:39:22.617580228 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11525] [02/Mar/2020:21:39:22.620447573 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11640] [02/Mar/2020:21:39:22.623734790 -0500] - 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: [11813] [02/Mar/2020:21:39:22.632510302 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11994] [02/Mar/2020:21:39:22.635800632 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12164] [02/Mar/2020:21:39:22.638919240 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12330] [02/Mar/2020:21:39:22.643732115 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12510] [02/Mar/2020:21:39:22.646962380 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12694] [02/Mar/2020:21:39:22.650196482 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc35a000000000000 / remotecsn:5e5dc34e000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12858] [02/Mar/2020:21:39:22.769517340 -0500] - 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: [13012] [02/Mar/2020:21:39:22.775136137 -0500] - 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: [13176] [02/Mar/2020:21:39:22.779816696 -0500] - 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: [13326] [02/Mar/2020:21:39:22.782936593 -0500] - 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: [13612] [02/Mar/2020:21:39:22.785933928 -0500] - 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: [13925] [02/Mar/2020:21:39:22.788947796 -0500] - 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: [14227] [02/Mar/2020:21:39:22.803651386 -0500] - 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: [14538] [02/Mar/2020:21:39:22.809011971 -0500] - 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: [14646] [02/Mar/2020:21:39:22.813359816 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14769] [02/Mar/2020:21:39:22.862590405 -0500] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14981] [02/Mar/2020:21:39:22.866516976 -0500] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-137-0: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 14981 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_six | 9.61 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc364000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:509 ctest_schema_replication_six onsumer_schema_csn=b'5e5dc364000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 14982 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15118] 02/Mar/2020:21:39:22.869882765 -0500] - 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: [15252] [02/Mar/2020:21:39:23.052666073 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc358000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15435] [02/Mar/2020:21:39:23.057611757 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15550] [02/Mar/2020:21:39:23.239593780 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc35a0002:1583203162:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15672] [02/Mar/2020:21:39:23.260685581 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc35a0002:1583203162:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15793] [02/Mar/2020:21:39:23.264855880 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc35b0000:1583203163:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16048] [02/Mar/2020:21:39:23.267757157 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16227] [02/Mar/2020:21:39:23.270824938 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16381] [02/Mar/2020:21:39:23.274010593 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16618] [02/Mar/2020:21:39:23.277109979 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc356000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16797] [02/Mar/2020:21:39:23.280670202 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16951] [02/Mar/2020:21:39:23.284004748 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17188] [02/Mar/2020:21:39:23.287353731 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc35a000000010000 5e5dc35a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17348] [02/Mar/2020:21:39:23.290122227 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff9b07500 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17573] [02/Mar/2020:21:39:23.293076804 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff9b07500 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17865] [02/Mar/2020:21:39:23.298922976 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc35a000000010000) csnBuf (5e5dc356000000010000) csnConsumerMax (5e5dc356000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17978] [02/Mar/2020:21:39:23.308769474 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc356000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18167] [02/Mar/2020:21:39:23.312197875 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc356000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18321] [02/Mar/2020:21:39:23.315453485 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18433] [02/Mar/2020:21:39:23.318370273 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18651] [02/Mar/2020:21:39:23.321589825 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc35a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18783] [02/Mar/2020:21:39:23.324378743 -0500] - 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: [18979] [02/Mar/2020:21:39:23.327873279 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19112] [02/Mar/2020:21:39:23.330746076 -0500] - 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: [19242] [02/Mar/2020:21:39:23.333516754 -0500] - 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: [19553] [02/Mar/2020:21:39:23.337366987 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc35a000000010000) csnMax (5e5dc35a000000010000) csnBuf (5e5dc35a000000010000) csnConsumerMax (5e5dc35a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19675] [02/Mar/2020:21:39:23.340652537 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19857] [02/Mar/2020:21:39:23.344080303 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19970] [02/Mar/2020:21:39:23.347796221 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 19 19 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20103] [02/Mar/2020:21:39:23.351053558 -0500] - 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: [20212] [02/Mar/2020:21:39:23.355222546 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20482] [02/Mar/2020:21:39:23.359192582 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [20644] [02/Mar/2020:21:39:23.366206354 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20812] [02/Mar/2020:21:39:23.370969719 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20984] [02/Mar/2020:21:39:23.374596749 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21092] [02/Mar/2020:21:39:23.637859929 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21261] [02/Mar/2020:21:39:23.641549175 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21434] [02/Mar/2020:21:39:23.644653096 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21607] [02/Mar/2020:21:39:23.648577129 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21777] [02/Mar/2020:21:39:23.652051208 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21950] [02/Mar/2020:21:39:23.655471573 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22113] [02/Mar/2020:21:39:23.744720884 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-137-0:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22241] [02/Mar/2020:21:39:23.748348281 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22452] [02/Mar/2020:21:39:23.751631006 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc35a000000010000 5e5dc35a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22625] [02/Mar/2020:21:39:23.754711706 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22733] [02/Mar/2020:21:39:23.757737986 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22841] [02/Mar/2020:21:39:28.777844480 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23009] [02/Mar/2020:21:39:28.783212125 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23182] [02/Mar/2020:21:39:28.788819009 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23355] [02/Mar/2020:21:39:28.794394868 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23525] [02/Mar/2020:21:39:28.798299165 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23692] [02/Mar/2020:21:39:28.801905375 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24216] [02/Mar/2020:21:39:28.805092060 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - binddn = cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQmhXMXFWbU1PcG4zWExRc3dCUEQyZA==}4qpT2PX7BU+R1qRwt59PiARiQJY0Xhs4Vondpe8n7JscKqD2tsziRO/3nOelSLtF [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24261] NikXGBnssVrQZTIo77pFOOHTILaNg7thxT9D38FZsrE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24434] [02/Mar/2020:21:39:28.809274319 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24556] [02/Mar/2020:21:39:28.814018536 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc35b0000:1583203163:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24677] [02/Mar/2020:21:39:28.817536854 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3600000:1583203168:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24843] [02/Mar/2020:21:39:28.822266549 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25023] [02/Mar/2020:21:39:28.825312641 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25207] [02/Mar/2020:21:39:28.828668027 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc35a000000000000 / remotecsn:5e5dc358000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25341] [02/Mar/2020:21:39:29.014650730 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc35a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25456] [02/Mar/2020:21:39:29.018520436 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3600001:1583203168:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25578] [02/Mar/2020:21:39:29.021789980 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3600001:1583203168:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25699] [02/Mar/2020:21:39:29.025735846 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3610000:1583203169:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25954] [02/Mar/2020:21:39:29.028719353 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26133] [02/Mar/2020:21:39:29.031847240 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26287] [02/Mar/2020:21:39:29.035012085 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26524] [02/Mar/2020:21:39:29.038205370 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc35a000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26703] [02/Mar/2020:21:39:29.042312627 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26857] [02/Mar/2020:21:39:29.045939246 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27094] [02/Mar/2020:21:39:29.049888389 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc35a000000010000 5e5dc35a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27386] [02/Mar/2020:21:39:29.054126041 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5e5dc35a000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc35a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27508] [02/Mar/2020:21:39:29.058417478 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27778] [02/Mar/2020:21:39:29.061809402 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [27925] [02/Mar/2020:21:39:29.064894989 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28087] [02/Mar/2020:21:39:29.070926359 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28255] [02/Mar/2020:21:39:29.149254497 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28427] [02/Mar/2020:21:39:29.152386615 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28549] [02/Mar/2020:21:39:30.799912709 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3610000:1583203169:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28670] [02/Mar/2020:21:39:30.804171199 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3620000:1583203170:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28833] [02/Mar/2020:21:39:30.807415015 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc362000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29013] [02/Mar/2020:21:39:30.810546915 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488da000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29258] [02/Mar/2020:21:39:30.813615009 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29526] [02/Mar/2020:21:39:30.817374663 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29701] [02/Mar/2020:21:39:30.820345860 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc362000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29969] [02/Mar/2020:21:39:30.824000614 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30107] [02/Mar/2020:21:39:30.827996831 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30237] [02/Mar/2020:21:39:30.830953449 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30375] [02/Mar/2020:21:39:30.834781848 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30503] [02/Mar/2020:21:39:30.839547645 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30618] [02/Mar/2020:21:39:30.842947722 -0500] - 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: [30791] [02/Mar/2020:21:39:30.850564997 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30972] [02/Mar/2020:21:39:30.854129415 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31142] [02/Mar/2020:21:39:30.857847109 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31308] [02/Mar/2020:21:39:30.863224517 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31488] [02/Mar/2020:21:39:30.867416187 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31603] [02/Mar/2020:21:39:30.871630936 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3620002:1583203170:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31858] [02/Mar/2020:21:39:30.876574485 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32037] [02/Mar/2020:21:39:30.880845376 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32191] [02/Mar/2020:21:39:30.885482306 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32428] [02/Mar/2020:21:39:30.889821577 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc35a000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32607] [02/Mar/2020:21:39:30.894265212 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32761] [02/Mar/2020:21:39:30.898476926 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32998] [02/Mar/2020:21:39:30.902395123 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc362000000010000 5e5dc362 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33158] [02/Mar/2020:21:39:30.906613712 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8100 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33383] [02/Mar/2020:21:39:30.911820688 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8100 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33675] [02/Mar/2020:21:39:30.915956856 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc362000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc35a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33788] [02/Mar/2020:21:39:30.919767952 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc35a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33977] [02/Mar/2020:21:39:30.923936508 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc35a000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34131] [02/Mar/2020:21:39:30.929900142 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34243] [02/Mar/2020:21:39:30.936087618 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34461] [02/Mar/2020:21:39:30.941560317 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc362000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34593] [02/Mar/2020:21:39:30.945018643 -0500] - 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: [34789] [02/Mar/2020:21:39:30.948713672 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35100] [02/Mar/2020:21:39:30.956292723 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc362000000010000) csnMax (5e5dc362000000010000) csnBuf (5e5dc362000000010000) csnConsumerMax (5e5dc362000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35222] [02/Mar/2020:21:39:30.960543303 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35404] [02/Mar/2020:21:39:30.964222011 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35516] [02/Mar/2020:21:39:30.969098318 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35648] [02/Mar/2020:21:39:30.974637622 -0500] - 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: [35781] [02/Mar/2020:21:39:30.980514623 -0500] - 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: [35911] [02/Mar/2020:21:39:30.984310559 -0500] - 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: [36044] [02/Mar/2020:21:39:30.988318140 -0500] - 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: [36177] [02/Mar/2020:21:39:30.993176672 -0500] - 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: [36310] [02/Mar/2020:21:39:31.000704992 -0500] - 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: [36443] [02/Mar/2020:21:39:31.008540431 -0500] - 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: [36576] [02/Mar/2020:21:39:31.020409059 -0500] - 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: [36709] [02/Mar/2020:21:39:31.040497780 -0500] - 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: [36822] [02/Mar/2020:21:39:31.075074624 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36931] [02/Mar/2020:21:39:31.079481740 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37201] [02/Mar/2020:21:39:31.117439945 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [37363] [02/Mar/2020:21:39:31.125058616 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37531] [02/Mar/2020:21:39:31.130650427 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37703] [02/Mar/2020:21:39:31.135079299 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37811] [02/Mar/2020:21:39:32.100355963 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37919] [02/Mar/2020:21:39:32.204520741 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38174] [02/Mar/2020:21:39:32.274350775 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38321] [02/Mar/2020:21:39:32.279410869 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38443] [02/Mar/2020:21:39:32.288861699 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3620002:1583203170:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38564] [02/Mar/2020:21:39:32.294471121 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3640000:1583203172:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38727] [02/Mar/2020:21:39:32.304051900 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc364000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38907] [02/Mar/2020:21:39:32.307988682 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488e2000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39152] [02/Mar/2020:21:39:32.311619826 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39420] [02/Mar/2020:21:39:32.314643192 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39595] [02/Mar/2020:21:39:32.317461207 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc364000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39863] [02/Mar/2020:21:39:32.320269506 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40001] [02/Mar/2020:21:39:32.323002862 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40131] [02/Mar/2020:21:39:32.325893801 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40269] [02/Mar/2020:21:39:32.328924496 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40397] [02/Mar/2020:21:39:32.331673693 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40512] [02/Mar/2020:21:39:32.334636332 -0500] - 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: [40685] [02/Mar/2020:21:39:32.343066622 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40866] [02/Mar/2020:21:39:32.346472252 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41036] [02/Mar/2020:21:39:32.349582288 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41202] [02/Mar/2020:21:39:32.463348791 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41382] [02/Mar/2020:21:39:32.466894766 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41566] [02/Mar/2020:21:39:32.469966242 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc364000000000000 / remotecsn:5e5dc35a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41700] [02/Mar/2020:21:39:32.644479522 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc35a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41883] [02/Mar/2020:21:39:32.648278694 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41998] [02/Mar/2020:21:39:32.824577894 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3640002:1583203172:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42253] [02/Mar/2020:21:39:32.829885875 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42432] [02/Mar/2020:21:39:32.833395229 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42586] [02/Mar/2020:21:39:32.836886780 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42823] [02/Mar/2020:21:39:32.840281360 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc362000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43002] [02/Mar/2020:21:39:32.843442527 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43156] [02/Mar/2020:21:39:32.846609608 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43393] [02/Mar/2020:21:39:32.849919299 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc364000000010000 5e5dc364 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43553] [02/Mar/2020:21:39:32.853118661 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8100 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43778] [02/Mar/2020:21:39:32.856821925 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8100 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44070] [02/Mar/2020:21:39:32.860012160 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc364000000010000) csnBuf (5e5dc362000000010000) csnConsumerMax (5e5dc362000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44183] [02/Mar/2020:21:39:32.863342400 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc362000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44372] [02/Mar/2020:21:39:32.882933630 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc362000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44526] [02/Mar/2020:21:39:32.886131805 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44638] [02/Mar/2020:21:39:32.889340484 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44856] [02/Mar/2020:21:39:32.892485378 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc364000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44988] [02/Mar/2020:21:39:32.895415075 -0500] - 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: [45184] [02/Mar/2020:21:39:32.899277377 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45495] [02/Mar/2020:21:39:32.903462205 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc364000000010000) csnMax (5e5dc364000000010000) csnBuf (5e5dc364000000010000) csnConsumerMax (5e5dc364000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45617] [02/Mar/2020:21:39:32.906404686 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45799] [02/Mar/2020:21:39:32.910030389 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45911] [02/Mar/2020:21:39:32.918334033 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46044] [02/Mar/2020:21:39:32.921257855 -0500] - 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: [46174] [02/Mar/2020:21:39:32.923801167 -0500] - 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: [46307] [02/Mar/2020:21:39:32.926747668 -0500] - 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: [46440] [02/Mar/2020:21:39:32.931459214 -0500] - 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: [46573] [02/Mar/2020:21:39:32.937916417 -0500] - 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: [46706] [02/Mar/2020:21:39:32.945614434 -0500] - 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: [46839] [02/Mar/2020:21:39:32.958647850 -0500] - 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: [46972] [02/Mar/2020:21:39:32.978444548 -0500] - 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: [47105] [02/Mar/2020:21:39:33.013809559 -0500] - 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: [47218] [02/Mar/2020:21:39:33.021597550 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 17 17 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47327] [02/Mar/2020:21:39:33.081491089 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47597] [02/Mar/2020:21:39:33.085532916 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [47759] [02/Mar/2020:21:39:33.094752941 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47927] [02/Mar/2020:21:39:33.098254266 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48099] [02/Mar/2020:21:39:33.102607376 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48207] [02/Mar/2020:21:39:33.105821856 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48462] [02/Mar/2020:21:39:33.109295682 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48609] [02/Mar/2020:21:39:33.112347643 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48724] [02/Mar/2020:21:39:33.120641603 -0500] - 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: [48832] [02/Mar/2020:21:39:33.349281855 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49001] [02/Mar/2020:21:39:33.352845120 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49174] [02/Mar/2020:21:39:33.356728519 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49347] [02/Mar/2020:21:39:33.360290967 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49517] [02/Mar/2020:21:39:33.363635100 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49690] [02/Mar/2020:21:39:33.367506809 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49853] [02/Mar/2020:21:39:33.456621981 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-137-0:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49981] [02/Mar/2020:21:39:33.460314503 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50192] [02/Mar/2020:21:39:33.464247170 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc364000000010000 5e5dc364 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50365] [02/Mar/2020:21:39:33.467195495 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50473] [02/Mar/2020:21:39:33.470509040 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50581] [02/Mar/2020:21:39:38.490108721 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50749] [02/Mar/2020:21:39:38.494179735 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50922] [02/Mar/2020:21:39:38.498205024 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51095] [02/Mar/2020:21:39:38.503385106 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51265] [02/Mar/2020:21:39:38.506958494 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51432] [02/Mar/2020:21:39:38.510642862 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51956] [02/Mar/2020:21:39:38.514648026 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - binddn = cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQmhXMXFWbU1PcG4zWExRc3dCUEQyZA==}4qpT2PX7BU+R1qRwt59PiARiQJY0Xhs4Vondpe8n7JscKqD2tsziRO/3nOelSLtF [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52001] NikXGBnssVrQZTIo77pFOOHTILaNg7thxT9D38FZsrE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52174] [02/Mar/2020:21:39:38.519050440 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52296] [02/Mar/2020:21:39:38.524906464 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3640002:1583203172:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52417] [02/Mar/2020:21:39:38.528193710 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc36a0000:1583203178:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52583] [02/Mar/2020:21:39:38.532560416 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52763] [02/Mar/2020:21:39:38.535779656 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52947] [02/Mar/2020:21:39:38.539225745 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc364000000000000 / remotecsn:5e5dc35a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53081] [02/Mar/2020:21:39:38.714546665 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc364000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53196] [02/Mar/2020:21:39:38.718659167 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc36a0001:1583203178:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53451] [02/Mar/2020:21:39:38.722664863 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53630] [02/Mar/2020:21:39:38.727879578 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53784] [02/Mar/2020:21:39:38.746553303 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54021] [02/Mar/2020:21:39:38.751459243 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc364000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54200] [02/Mar/2020:21:39:38.756444883 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54354] [02/Mar/2020:21:39:38.760537928 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54591] [02/Mar/2020:21:39:38.764691069 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc364000000010000 5e5dc364 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54883] [02/Mar/2020:21:39:38.768748223 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5e5dc364000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc364000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55005] [02/Mar/2020:21:39:38.772207118 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55275] [02/Mar/2020:21:39:38.777222666 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [55422] [02/Mar/2020:21:39:38.790584236 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55584] [02/Mar/2020:21:39:38.797593222 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55752] [02/Mar/2020:21:39:38.800737065 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55924] [02/Mar/2020:21:39:38.803912279 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56046] [02/Mar/2020:21:39:40.505623540 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc36a0001:1583203178:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56167] [02/Mar/2020:21:39:40.509543197 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc36c0000:1583203180:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56330] [02/Mar/2020:21:39:40.513480463 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc36c000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56510] [02/Mar/2020:21:39:40.516531214 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488e4000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56755] [02/Mar/2020:21:39:40.519916181 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57023] [02/Mar/2020:21:39:40.522751347 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57198] [02/Mar/2020:21:39:40.528007917 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc36c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57466] [02/Mar/2020:21:39:40.530981334 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57604] [02/Mar/2020:21:39:40.534212968 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57734] [02/Mar/2020:21:39:40.536725201 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57872] [02/Mar/2020:21:39:40.539546705 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58000] [02/Mar/2020:21:39:40.542329386 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58115] [02/Mar/2020:21:39:40.544895171 -0500] - 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: [58288] [02/Mar/2020:21:39:40.550679979 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58469] [02/Mar/2020:21:39:40.553538874 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58639] [02/Mar/2020:21:39:40.555974613 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58805] [02/Mar/2020:21:39:40.560338124 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58985] [02/Mar/2020:21:39:40.562937371 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59100] [02/Mar/2020:21:39:40.565625795 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc36c0002:1583203180:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59355] [02/Mar/2020:21:39:40.568378258 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59534] [02/Mar/2020:21:39:40.571505437 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59688] [02/Mar/2020:21:39:40.574157294 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59925] [02/Mar/2020:21:39:40.576764473 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc364000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60104] [02/Mar/2020:21:39:40.579510108 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60258] [02/Mar/2020:21:39:40.581771859 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60495] [02/Mar/2020:21:39:40.584388639 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36c000000010000 5e5dc36c [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60655] [02/Mar/2020:21:39:40.586987871 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8200 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60880] [02/Mar/2020:21:39:40.589401758 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8200 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61172] [02/Mar/2020:21:39:40.592082310 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc36c000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc364000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61285] [02/Mar/2020:21:39:40.594404833 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc364000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61474] [02/Mar/2020:21:39:40.600723077 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc364000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61628] [02/Mar/2020:21:39:40.609065844 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61740] [02/Mar/2020:21:39:40.612718283 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61958] [02/Mar/2020:21:39:40.615566207 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc36c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62090] [02/Mar/2020:21:39:40.618395733 -0500] - 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: [62286] [02/Mar/2020:21:39:40.622187357 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62597] [02/Mar/2020:21:39:40.624950864 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc36c000000010000) csnMax (5e5dc36c000000010000) csnBuf (5e5dc36c000000010000) csnConsumerMax (5e5dc36c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62719] [02/Mar/2020:21:39:40.627596933 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62901] [02/Mar/2020:21:39:40.629968707 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63013] [02/Mar/2020:21:39:40.632497382 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63146] [02/Mar/2020:21:39:40.634900545 -0500] - 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: [63276] [02/Mar/2020:21:39:40.637250431 -0500] - 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: [63409] [02/Mar/2020:21:39:40.639968595 -0500] - 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: [63542] [02/Mar/2020:21:39:40.643430453 -0500] - 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: [63675] [02/Mar/2020:21:39:40.655644089 -0500] - 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: [63808] [02/Mar/2020:21:39:40.662676614 -0500] - 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: [63941] [02/Mar/2020:21:39:40.673655350 -0500] - 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: [64074] [02/Mar/2020:21:39:40.692640503 -0500] - 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: [64207] [02/Mar/2020:21:39:40.728226781 -0500] - 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: [64320] [02/Mar/2020:21:39:40.735117185 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64429] [02/Mar/2020:21:39:40.795443496 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64699] [02/Mar/2020:21:39:40.799594080 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [64861] [02/Mar/2020:21:39:40.808048824 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65029] [02/Mar/2020:21:39:40.811580159 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65201] [02/Mar/2020:21:39:40.814528081 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65201] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 65201 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_seven | 9.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 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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc36d000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:563 ctest_schema_replication_seven consumer_schema_csn=b'5e5dc36d000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 65202 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65309] 02/Mar/2020:21:39:41.812382943 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65417] [02/Mar/2020:21:39:41.911669493 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65672] [02/Mar/2020:21:39:41.967356119 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65819] [02/Mar/2020:21:39:42.016065620 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65941] [02/Mar/2020:21:39:42.026946879 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc36c0002:1583203180:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66062] [02/Mar/2020:21:39:42.029854606 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc36e0000:1583203182:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66225] [02/Mar/2020:21:39:42.032513133 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc36e000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66405] [02/Mar/2020:21:39:42.035582210 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488ec000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66650] [02/Mar/2020:21:39:42.038788503 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66918] [02/Mar/2020:21:39:42.041356016 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67093] [02/Mar/2020:21:39:42.043898102 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc36e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67361] [02/Mar/2020:21:39:42.046424662 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67499] [02/Mar/2020:21:39:42.050997519 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67629] [02/Mar/2020:21:39:42.053840108 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67767] [02/Mar/2020:21:39:42.056582955 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67895] [02/Mar/2020:21:39:42.059601312 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68010] [02/Mar/2020:21:39:42.062195004 -0500] - 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: [68183] [02/Mar/2020:21:39:42.066184059 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68364] [02/Mar/2020:21:39:42.070897065 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68534] [02/Mar/2020:21:39:42.073993496 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68700] [02/Mar/2020:21:39:42.078116605 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68880] [02/Mar/2020:21:39:42.080965729 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69064] [02/Mar/2020:21:39:42.083662725 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc36d000000000000 / remotecsn:5e5dc364000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69227] [02/Mar/2020:21:39:42.190576460 -0500] - 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: [69361] [02/Mar/2020:21:39:42.261832603 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc364000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69544] [02/Mar/2020:21:39:42.280284198 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69659] [02/Mar/2020:21:39:42.465408166 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc36e0002:1583203182:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69914] [02/Mar/2020:21:39:42.487974713 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70093] [02/Mar/2020:21:39:42.491454812 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70247] [02/Mar/2020:21:39:42.494493713 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70484] [02/Mar/2020:21:39:42.501287632 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36c000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70663] [02/Mar/2020:21:39:42.508237671 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70817] [02/Mar/2020:21:39:42.511227947 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71054] [02/Mar/2020:21:39:42.514105813 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36e000000010000 5e5dc36e [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71214] [02/Mar/2020:21:39:42.524224218 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8200 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71439] [02/Mar/2020:21:39:42.527456228 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8200 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71731] [02/Mar/2020:21:39:42.530101440 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc36e000000010000) csnBuf (5e5dc36c000000010000) csnConsumerMax (5e5dc36c000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71844] [02/Mar/2020:21:39:42.532901363 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc36c000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72033] [02/Mar/2020:21:39:42.537836056 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc36c000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72187] [02/Mar/2020:21:39:42.541608633 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72405] [02/Mar/2020:21:39:42.545651878 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc36e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72601] [02/Mar/2020:21:39:42.549026423 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72912] [02/Mar/2020:21:39:42.553013889 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc36e000000010000) csnMax (5e5dc36e000000010000) csnBuf (5e5dc36e000000010000) csnConsumerMax (5e5dc36e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73034] [02/Mar/2020:21:39:42.555987926 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73216] [02/Mar/2020:21:39:42.558666916 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73328] [02/Mar/2020:21:39:42.561354469 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73440] [02/Mar/2020:21:39:42.564003232 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73573] [02/Mar/2020:21:39:42.566653328 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73703] [02/Mar/2020:21:39:42.569618735 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 18, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73836] [02/Mar/2020:21:39:42.572264506 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73969] [02/Mar/2020:21:39:42.578361109 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74102] [02/Mar/2020:21:39:42.583312828 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74235] [02/Mar/2020:21:39:42.590506803 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74368] [02/Mar/2020:21:39:42.603616748 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74501] [02/Mar/2020:21:39:42.625268128 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74634] [02/Mar/2020:21:39:42.660610374 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74747] [02/Mar/2020:21:39:42.664164587 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 18 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74856] [02/Mar/2020:21:39:42.728417651 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75126] [02/Mar/2020:21:39:42.731855505 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [75288] [02/Mar/2020:21:39:42.738067157 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75456] [02/Mar/2020:21:39:42.741119276 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75628] [02/Mar/2020:21:39:42.743720968 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75736] [02/Mar/2020:21:39:43.071885506 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75905] [02/Mar/2020:21:39:43.075368911 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76078] [02/Mar/2020:21:39:43.079929884 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76251] [02/Mar/2020:21:39:43.083403560 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76421] [02/Mar/2020:21:39:43.086639154 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76594] [02/Mar/2020:21:39:43.090138832 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76757] [02/Mar/2020:21:39:43.180120644 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-137-0:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76885] [02/Mar/2020:21:39:43.183435994 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77096] [02/Mar/2020:21:39:43.186398843 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36e000000010000 5e5dc36e [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77269] [02/Mar/2020:21:39:43.190800965 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77377] [02/Mar/2020:21:39:43.193626105 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77485] [02/Mar/2020:21:39:48.296692869 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77653] [02/Mar/2020:21:39:48.301100860 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77826] [02/Mar/2020:21:39:48.304763829 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77999] [02/Mar/2020:21:39:48.308313666 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78169] [02/Mar/2020:21:39:48.311775599 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78336] [02/Mar/2020:21:39:48.315367698 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78860] [02/Mar/2020:21:39:48.318377440 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - binddn = cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQmhXMXFWbU1PcG4zWExRc3dCUEQyZA==}4qpT2PX7BU+R1qRwt59PiARiQJY0Xhs4Vondpe8n7JscKqD2tsziRO/3nOelSLtF [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78905] NikXGBnssVrQZTIo77pFOOHTILaNg7thxT9D38FZsrE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79078] [02/Mar/2020:21:39:48.326533204 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79200] [02/Mar/2020:21:39:48.331447984 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc36e0002:1583203182:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79321] [02/Mar/2020:21:39:48.334632225 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3740000:1583203188:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79487] [02/Mar/2020:21:39:48.338813862 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79667] [02/Mar/2020:21:39:48.345100968 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79851] [02/Mar/2020:21:39:48.388260177 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc36d000000000000 / remotecsn:5e5dc364000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79985] [02/Mar/2020:21:39:48.570639660 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc36d000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80100] [02/Mar/2020:21:39:48.574010736 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3740001:1583203188:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80355] [02/Mar/2020:21:39:48.576815297 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80534] [02/Mar/2020:21:39:48.603058721 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80688] [02/Mar/2020:21:39:48.618429701 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80925] [02/Mar/2020:21:39:48.621490462 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36e000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81104] [02/Mar/2020:21:39:48.624790301 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81258] [02/Mar/2020:21:39:48.628242277 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81495] [02/Mar/2020:21:39:48.630849994 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36e000000010000 5e5dc36e [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81787] [02/Mar/2020:21:39:48.633515032 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5e5dc36e000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc36e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81909] [02/Mar/2020:21:39:48.636176941 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82179] [02/Mar/2020:21:39:48.639933772 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [82326] [02/Mar/2020:21:39:48.642521872 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82488] [02/Mar/2020:21:39:48.648235418 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82656] [02/Mar/2020:21:39:48.651261805 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82828] [02/Mar/2020:21:39:48.654289539 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82950] [02/Mar/2020:21:39:50.312780038 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3740001:1583203188:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83071] [02/Mar/2020:21:39:50.326932517 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3760000:1583203190:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83234] [02/Mar/2020:21:39:50.329948562 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc376000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83414] [02/Mar/2020:21:39:50.332702891 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488ee000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83659] [02/Mar/2020:21:39:50.335936239 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83927] [02/Mar/2020:21:39:50.340876943 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84102] [02/Mar/2020:21:39:50.343695010 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc376000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84370] [02/Mar/2020:21:39:50.346759345 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84508] [02/Mar/2020:21:39:50.349450589 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84638] [02/Mar/2020:21:39:50.352453329 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84776] [02/Mar/2020:21:39:50.355513086 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84904] [02/Mar/2020:21:39:50.360012359 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85019] [02/Mar/2020:21:39:50.364039689 -0500] - 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: [85192] [02/Mar/2020:21:39:50.370620977 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85373] [02/Mar/2020:21:39:50.373471242 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85543] [02/Mar/2020:21:39:50.376189419 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85709] [02/Mar/2020:21:39:50.380073011 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85889] [02/Mar/2020:21:39:50.382977478 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86004] [02/Mar/2020:21:39:50.385650676 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3760002:1583203190:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86259] [02/Mar/2020:21:39:50.388474294 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86438] [02/Mar/2020:21:39:50.391216686 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86592] [02/Mar/2020:21:39:50.393808334 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86829] [02/Mar/2020:21:39:50.396507206 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc36e000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87008] [02/Mar/2020:21:39:50.399240884 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87162] [02/Mar/2020:21:39:50.401858332 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87399] [02/Mar/2020:21:39:50.404553893 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc376000000010000 5e5dc376 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87559] [02/Mar/2020:21:39:50.407357543 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8300 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87784] [02/Mar/2020:21:39:50.410351646 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8300 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88076] [02/Mar/2020:21:39:50.413332827 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc376000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc36e000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88189] [02/Mar/2020:21:39:50.416057661 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc36e000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88378] [02/Mar/2020:21:39:50.418778157 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc36e000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88532] [02/Mar/2020:21:39:50.421578779 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88644] [02/Mar/2020:21:39:50.424451649 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88862] [02/Mar/2020:21:39:50.427656415 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc376000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88994] [02/Mar/2020:21:39:50.430350991 -0500] - 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: [89190] [02/Mar/2020:21:39:50.439786226 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89322] [02/Mar/2020:21:39:50.445419964 -0500] - 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: [89633] [02/Mar/2020:21:39:50.448919412 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc376000000010000) csnMax (5e5dc376000000010000) csnBuf (5e5dc376000000010000) csnConsumerMax (5e5dc376000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89755] [02/Mar/2020:21:39:50.451597597 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89937] [02/Mar/2020:21:39:50.454167723 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90049] [02/Mar/2020:21:39:50.456966077 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90182] [02/Mar/2020:21:39:50.462834429 -0500] - 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: [90312] [02/Mar/2020:21:39:50.465997680 -0500] - 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: [90445] [02/Mar/2020:21:39:50.469200962 -0500] - 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: [90578] [02/Mar/2020:21:39:50.473107340 -0500] - 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: [90711] [02/Mar/2020:21:39:50.478029220 -0500] - 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: [90844] [02/Mar/2020:21:39:50.484921326 -0500] - 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: [90977] [02/Mar/2020:21:39:50.495988764 -0500] - 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: [91110] [02/Mar/2020:21:39:50.515543919 -0500] - 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: [91223] [02/Mar/2020:21:39:50.562962744 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91332] [02/Mar/2020:21:39:50.570091093 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91602] [02/Mar/2020:21:39:50.573121110 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [91764] [02/Mar/2020:21:39:50.579050827 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91932] [02/Mar/2020:21:39:50.581971432 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92104] [02/Mar/2020:21:39:50.584482077 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92104] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 92104 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_eight | 13.31 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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'5e5dc37a000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:626 ctest_schema_replication_eight onsumer_schema_csn=b'5e5dc37a000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 92105 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92212] 02/Mar/2020:21:39:53.928202470 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92320] [02/Mar/2020:21:39:54.080944653 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92575] [02/Mar/2020:21:39:54.134466860 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92722] [02/Mar/2020:21:39:54.144420210 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92844] [02/Mar/2020:21:39:54.153421325 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3760002:1583203190:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92965] [02/Mar/2020:21:39:54.156909806 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc37a0000:1583203194:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93128] [02/Mar/2020:21:39:54.159514955 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc37a000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93308] [02/Mar/2020:21:39:54.165008343 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488f6000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93553] [02/Mar/2020:21:39:54.168330526 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93821] [02/Mar/2020:21:39:54.171558977 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93996] [02/Mar/2020:21:39:54.174512274 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc37a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94264] [02/Mar/2020:21:39:54.177957532 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94402] [02/Mar/2020:21:39:54.181056651 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94532] [02/Mar/2020:21:39:54.183622847 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94670] [02/Mar/2020:21:39:54.186357256 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94798] [02/Mar/2020:21:39:54.189272393 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94913] [02/Mar/2020:21:39:54.192076563 -0500] - 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: [95086] [02/Mar/2020:21:39:54.227309588 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95267] [02/Mar/2020:21:39:54.230382593 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95437] [02/Mar/2020:21:39:54.233007311 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95603] [02/Mar/2020:21:39:54.236976736 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95783] [02/Mar/2020:21:39:54.239770182 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95967] [02/Mar/2020:21:39:54.242528877 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc37a000000000000 / remotecsn:5e5dc36d000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96130] [02/Mar/2020:21:39:54.355404865 -0500] - 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: [96295] [02/Mar/2020:21:39:54.359011913 -0500] - 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: [96449] [02/Mar/2020:21:39:54.361996188 -0500] - 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: [96612] [02/Mar/2020:21:39:54.366603375 -0500] - 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: [96777] [02/Mar/2020:21:39:54.369692204 -0500] - 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: [96927] [02/Mar/2020:21:39:54.372458346 -0500] - 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: [97227] [02/Mar/2020:21:39:54.375245010 -0500] - 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: [97556] [02/Mar/2020:21:39:54.378262679 -0500] - 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: [97872] [02/Mar/2020:21:39:54.392305228 -0500] - 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: [98199] [02/Mar/2020:21:39:54.398114710 -0500] - 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: [98307] [02/Mar/2020:21:39:54.401674501 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98430] [02/Mar/2020:21:39:54.454521629 -0500] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98642] [02/Mar/2020:21:39:54.460261358 -0500] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-137-0: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 98642 | |||
Passed | suites/schema/schema_replication_test.py::test_schema_replication_nine | 9.64 | |
-------------------------------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:1188 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:685 test_schema_replication_nine master_schema_csn=b'5e5dc385000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:686 ctest_schema_replication_nine onsumer_schema_csn=b'5e5dc385000000000000' [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 98643 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98779] 02/Mar/2020:21:39:54.465461241 -0500] - 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: [98942] [02/Mar/2020:21:39:54.569289178 -0500] - 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: [99076] [02/Mar/2020:21:39:54.642195110 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc377000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99259] [02/Mar/2020:21:39:54.647915345 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99374] [02/Mar/2020:21:39:54.843000463 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc37a0002:1583203194:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99629] [02/Mar/2020:21:39:54.847802555 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99808] [02/Mar/2020:21:39:54.850947608 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99962] [02/Mar/2020:21:39:54.853692670 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100199] [02/Mar/2020:21:39:54.856607702 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc376000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100378] [02/Mar/2020:21:39:54.864840988 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100532] [02/Mar/2020:21:39:54.867957718 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100769] [02/Mar/2020:21:39:54.870745225 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc37a000000010000 5e5dc37a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100929] [02/Mar/2020:21:39:54.874066269 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8300 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101154] [02/Mar/2020:21:39:54.876956145 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8300 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101446] [02/Mar/2020:21:39:54.883031997 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc37a000000010000) csnBuf (5e5dc376000000010000) csnConsumerMax (5e5dc376000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101559] [02/Mar/2020:21:39:54.886260801 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc376000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101748] [02/Mar/2020:21:39:54.889762176 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc376000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101902] [02/Mar/2020:21:39:54.892982299 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102014] [02/Mar/2020:21:39:54.895930583 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102232] [02/Mar/2020:21:39:54.898601602 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc37a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102364] [02/Mar/2020:21:39:54.907277420 -0500] - 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: [102560] [02/Mar/2020:21:39:54.910508007 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102871] [02/Mar/2020:21:39:54.917335535 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc37a000000010000) csnMax (5e5dc37a000000010000) csnBuf (5e5dc37a000000010000) csnConsumerMax (5e5dc37a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102993] [02/Mar/2020:21:39:54.920642416 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103175] [02/Mar/2020:21:39:54.923686166 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103287] [02/Mar/2020:21:39:54.926854506 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103420] [02/Mar/2020:21:39:54.929523310 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103550] [02/Mar/2020:21:39:54.932527906 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 20, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103683] [02/Mar/2020:21:39:54.936851164 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103816] [02/Mar/2020:21:39:54.941984856 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103949] [02/Mar/2020:21:39:54.947000947 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104082] [02/Mar/2020:21:39:54.954453507 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104215] [02/Mar/2020:21:39:54.972947194 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104348] [02/Mar/2020:21:39:54.993719272 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104481] [02/Mar/2020:21:39:55.029502918 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104594] [02/Mar/2020:21:39:55.033179800 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 20 20 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104703] [02/Mar/2020:21:39:55.097336500 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104973] [02/Mar/2020:21:39:55.122300558 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [105135] [02/Mar/2020:21:39:55.129128934 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105303] [02/Mar/2020:21:39:55.132094165 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105475] [02/Mar/2020:21:39:55.134812552 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105583] [02/Mar/2020:21:39:55.233282175 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105752] [02/Mar/2020:21:39:55.237938237 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105925] [02/Mar/2020:21:39:55.250532060 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106098] [02/Mar/2020:21:39:55.257561584 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106268] [02/Mar/2020:21:39:55.262772879 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106441] [02/Mar/2020:21:39:55.269766186 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106604] [02/Mar/2020:21:39:55.350723264 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-137-0:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106732] [02/Mar/2020:21:39:55.354507589 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106943] [02/Mar/2020:21:39:55.357557040 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc37a000000010000 5e5dc37a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107116] [02/Mar/2020:21:39:55.360566991 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107224] [02/Mar/2020:21:39:55.363445583 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107332] [02/Mar/2020:21:40:00.380212826 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107500] [02/Mar/2020:21:40:01.092974516 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107673] [02/Mar/2020:21:40:01.219635897 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107846] [02/Mar/2020:21:40:02.208772628 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108016] [02/Mar/2020:21:40:02.254876687 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108183] [02/Mar/2020:21:40:02.262666251 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108707] [02/Mar/2020:21:40:02.273294957 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - binddn = cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQmhXMXFWbU1PcG4zWExRc3dCUEQyZA==}4qpT2PX7BU+R1qRwt59PiARiQJY0Xhs4Vondpe8n7JscKqD2tsziRO/3nOelSLtF [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108752] NikXGBnssVrQZTIo77pFOOHTILaNg7thxT9D38FZsrE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108925] [02/Mar/2020:21:40:02.278126043 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109047] [02/Mar/2020:21:40:02.284807484 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc37a0002:1583203194:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109168] [02/Mar/2020:21:40:02.288269873 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3820000:1583203202:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109334] [02/Mar/2020:21:40:02.292642740 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109514] [02/Mar/2020:21:40:02.295443659 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109698] [02/Mar/2020:21:40:02.298210769 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc37a000000000000 / remotecsn:5e5dc377000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109832] [02/Mar/2020:21:40:02.463738007 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc37a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109947] [02/Mar/2020:21:40:02.645409576 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3820001:1583203202:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110202] [02/Mar/2020:21:40:02.649987680 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110310] [02/Mar/2020:21:40:03.539249544 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110432] [02/Mar/2020:21:40:03.578177150 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3820001:1583203202:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110553] [02/Mar/2020:21:40:03.588710364 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3830000:1583203203:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110716] [02/Mar/2020:21:40:03.678904599 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc383000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110895] [02/Mar/2020:21:40:03.721224717 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111049] [02/Mar/2020:21:40:03.725806891 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111286] [02/Mar/2020:21:40:03.729509559 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc37a000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111465] [02/Mar/2020:21:40:03.732753417 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111619] [02/Mar/2020:21:40:03.735804814 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111856] [02/Mar/2020:21:40:03.739443065 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc37a000000010000 5e5dc37a [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112036] [02/Mar/2020:21:40:03.742424455 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e5488fa000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112291] [02/Mar/2020:21:40:03.745619544 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112438] [02/Mar/2020:21:40:03.748566395 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112683] [02/Mar/2020:21:40:03.751752790 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112975] [02/Mar/2020:21:40:03.755566868 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5e5dc37a000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc37a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113097] [02/Mar/2020:21:40:03.758813394 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113367] [02/Mar/2020:21:40:03.761641232 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [113514] [02/Mar/2020:21:40:03.764666744 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113782] [02/Mar/2020:21:40:03.767798782 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113957] [02/Mar/2020:21:40:03.771056933 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc383000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114119] [02/Mar/2020:21:40:03.774008029 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114287] [02/Mar/2020:21:40:03.776836320 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114555] [02/Mar/2020:21:40:03.779567435 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114727] [02/Mar/2020:21:40:03.782343251 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114865] [02/Mar/2020:21:40:03.785266383 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114995] [02/Mar/2020:21:40:03.789623620 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115133] [02/Mar/2020:21:40:03.792473273 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115261] [02/Mar/2020:21:40:03.795262821 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115376] [02/Mar/2020:21:40:03.798361201 -0500] - 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: [115549] [02/Mar/2020:21:40:03.805440207 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115730] [02/Mar/2020:21:40:03.808353558 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115900] [02/Mar/2020:21:40:03.811396016 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116015] [02/Mar/2020:21:40:03.814480572 -0500] - 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: [116181] [02/Mar/2020:21:40:03.817526525 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116361] [02/Mar/2020:21:40:03.821573224 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116476] [02/Mar/2020:21:40:03.824888515 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3830002:1583203203:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116731] [02/Mar/2020:21:40:03.828411990 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116910] [02/Mar/2020:21:40:03.831641155 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117064] [02/Mar/2020:21:40:03.834192162 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117301] [02/Mar/2020:21:40:03.837147199 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc37a000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117480] [02/Mar/2020:21:40:03.840226978 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117634] [02/Mar/2020:21:40:03.842947659 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117871] [02/Mar/2020:21:40:03.845892148 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc383000000010000 5e5dc383 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118031] [02/Mar/2020:21:40:03.848402773 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98af400 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118256] [02/Mar/2020:21:40:03.851133426 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98af400 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118548] [02/Mar/2020:21:40:03.854274441 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc383000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc37a000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118661] [02/Mar/2020:21:40:03.857280142 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc37a000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118850] [02/Mar/2020:21:40:03.860316874 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc37a000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119004] [02/Mar/2020:21:40:03.863389399 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119116] [02/Mar/2020:21:40:03.866336336 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119334] [02/Mar/2020:21:40:03.869557952 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc383000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119466] [02/Mar/2020:21:40:03.873245468 -0500] - 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: [119662] [02/Mar/2020:21:40:03.876972848 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119973] [02/Mar/2020:21:40:03.884910788 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc383000000010000) csnMax (5e5dc383000000010000) csnBuf (5e5dc383000000010000) csnConsumerMax (5e5dc383000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120095] [02/Mar/2020:21:40:03.888620684 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120277] [02/Mar/2020:21:40:03.891265101 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120389] [02/Mar/2020:21:40:03.894114729 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120521] [02/Mar/2020:21:40:03.897113843 -0500] - 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: [120654] [02/Mar/2020:21:40:03.902427769 -0500] - 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: [120784] [02/Mar/2020:21:40:03.907919966 -0500] - 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: [120917] [02/Mar/2020:21:40:03.910651495 -0500] - 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: [121050] [02/Mar/2020:21:40:03.914475563 -0500] - 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: [121183] [02/Mar/2020:21:40:03.919409734 -0500] - 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: [121316] [02/Mar/2020:21:40:03.926803095 -0500] - 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: [121449] [02/Mar/2020:21:40:03.938942645 -0500] - 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: [121582] [02/Mar/2020:21:40:03.958346491 -0500] - 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: [121715] [02/Mar/2020:21:40:03.995753071 -0500] - 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: [121828] [02/Mar/2020:21:40:03.999078176 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121937] [02/Mar/2020:21:40:04.063227794 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122207] [02/Mar/2020:21:40:04.067129519 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [122369] [02/Mar/2020:21:40:04.073631982 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122537] [02/Mar/2020:21:40:04.076697240 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122709] [02/Mar/2020:21:40:04.080016222 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122817] [02/Mar/2020:21:40:05.057206071 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122925] [02/Mar/2020:21:40:05.172430876 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123180] [02/Mar/2020:21:40:05.227920652 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123327] [02/Mar/2020:21:40:05.233387719 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5GetOperationCount - Found DB object 0x7f3ff9443440 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123449] [02/Mar/2020:21:40:05.242741773 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3830002:1583203203:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123570] [02/Mar/2020:21:40:05.246000154 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc3850000:1583203205:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123733] [02/Mar/2020:21:40:05.249058871 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc385000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123913] [02/Mar/2020:21:40:05.252269144 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e548903000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124158] [02/Mar/2020:21:40:05.255571587 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124426] [02/Mar/2020:21:40:05.258385545 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124601] [02/Mar/2020:21:40:05.261438478 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc385000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124869] [02/Mar/2020:21:40:05.266274995 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125007] [02/Mar/2020:21:40:05.269614208 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125137] [02/Mar/2020:21:40:05.272684402 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125275] [02/Mar/2020:21:40:05.275597624 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125403] [02/Mar/2020:21:40:05.279254350 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125518] [02/Mar/2020:21:40:05.282271668 -0500] - 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: [125691] [02/Mar/2020:21:40:05.286603695 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125872] [02/Mar/2020:21:40:05.290839311 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126042] [02/Mar/2020:21:40:05.293750320 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126208] [02/Mar/2020:21:40:05.297666746 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126388] [02/Mar/2020:21:40:05.300986272 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126572] [02/Mar/2020:21:40:05.304302738 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc385000000000000 / remotecsn:5e5dc37a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126706] [02/Mar/2020:21:40:05.471921416 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc37a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126889] [02/Mar/2020:21:40:05.475325910 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127004] [02/Mar/2020:21:40:05.654726680 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc3850002:1583203205:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127259] [02/Mar/2020:21:40:05.705932190 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127438] [02/Mar/2020:21:40:05.709226977 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127592] [02/Mar/2020:21:40:05.712140768 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127829] [02/Mar/2020:21:40:05.716249269 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc383000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128008] [02/Mar/2020:21:40:05.719355668 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128162] [02/Mar/2020:21:40:05.722525743 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128399] [02/Mar/2020:21:40:05.725190447 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc385000000010000 5e5dc385 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128559] [02/Mar/2020:21:40:05.727964965 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98af400 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128784] [02/Mar/2020:21:40:05.731128882 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98af400 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129076] [02/Mar/2020:21:40:05.733825519 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc385000000010000) csnBuf (5e5dc383000000010000) csnConsumerMax (5e5dc383000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129189] [02/Mar/2020:21:40:05.736400986 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc383000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129378] [02/Mar/2020:21:40:05.739030861 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc383000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129532] [02/Mar/2020:21:40:05.742007122 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129644] [02/Mar/2020:21:40:05.744912614 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129862] [02/Mar/2020:21:40:05.747814834 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc385000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129994] [02/Mar/2020:21:40:05.750929644 -0500] - 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: [130190] [02/Mar/2020:21:40:05.753948414 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130501] [02/Mar/2020:21:40:05.756744179 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc385000000010000) csnMax (5e5dc385000000010000) csnBuf (5e5dc385000000010000) csnConsumerMax (5e5dc385000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130623] [02/Mar/2020:21:40:05.761701971 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130805] [02/Mar/2020:21:40:05.764602356 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130917] [02/Mar/2020:21:40:05.768184461 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131050] [02/Mar/2020:21:40:05.771269527 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131180] [02/Mar/2020:21:40:05.774894206 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 18, (null) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131313] [02/Mar/2020:21:40:05.778246267 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131446] [02/Mar/2020:21:40:05.782324913 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131579] [02/Mar/2020:21:40:05.788206866 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131712] [02/Mar/2020:21:40:05.797210955 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131845] [02/Mar/2020:21:40:05.808926002 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131978] [02/Mar/2020:21:40:05.828385609 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132111] [02/Mar/2020:21:40:05.863862605 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132224] [02/Mar/2020:21:40:05.871381847 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 18 18 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132333] [02/Mar/2020:21:40:05.931570309 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132603] [02/Mar/2020:21:40:05.934902773 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [132765] [02/Mar/2020:21:40:05.941185596 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132933] [02/Mar/2020:21:40:05.943901175 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133105] [02/Mar/2020:21:40:05.946641933 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133213] [02/Mar/2020:21:40:06.290918742 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133382] [02/Mar/2020:21:40:06.294903362 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133555] [02/Mar/2020:21:40:06.297911644 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133728] [02/Mar/2020:21:40:06.302933759 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133898] [02/Mar/2020:21:40:06.305467554 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134071] [02/Mar/2020:21:40:06.308759452 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134234] [02/Mar/2020:21:40:06.398107934 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-137-0:39201): Protocol stopped after 0 seconds [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134362] [02/Mar/2020:21:40:06.441366305 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134573] [02/Mar/2020:21:40:06.444397845 -0500] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc385000000010000 5e5dc385 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134746] [02/Mar/2020:21:40:06.447765189 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134854] [02/Mar/2020:21:40:06.450705960 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134962] [02/Mar/2020:21:40:11.465830585 -0500] - DEBUG - replication - copy_operation_parameters - replica is null. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135130] [02/Mar/2020:21:40:11.469488063 -0500] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-137-0:39201)) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135303] [02/Mar/2020:21:40:11.472710729 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135476] [02/Mar/2020:21:40:11.477016870 -0500] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Disconnected from the consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135646] [02/Mar/2020:21:40:11.480305146 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: start -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135813] [02/Mar/2020:21:40:11.483355644 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Trying non-secure slapi_ldap_init_ext [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136337] [02/Mar/2020:21:40:11.486315491 -0500] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-137-0:39201) - binddn = cn=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQmhXMXFWbU1PcG4zWExRc3dCUEQyZA==}4qpT2PX7BU+R1qRwt59PiARiQJY0Xhs4Vondpe8n7JscKqD2tsziRO/3nOelSLtF [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136382] NikXGBnssVrQZTIo77pFOOHTILaNg7thxT9D38FZsrE= [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136555] [02/Mar/2020:21:40:11.490723606 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - No linger to cancel on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136677] [02/Mar/2020:21:40:11.495330194 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc3850002:1583203205:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136798] [02/Mar/2020:21:40:11.498363594 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc38b0000:1583203211:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [136964] [02/Mar/2020:21:40:11.502262111 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [137144] [02/Mar/2020:21:40:11.505333191 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [137328] [02/Mar/2020:21:40:11.507937218 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5e5dc385000000000000 / remotecsn:5e5dc37a000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [137462] [02/Mar/2020:21:40:11.676268776 -0500] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5e5dc385000000000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [137577] [02/Mar/2020:21:40:11.681301588 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc38b0001:1583203211:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [137832] [02/Mar/2020:21:40:11.685523927 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138011] [02/Mar/2020:21:40:11.880370704 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138165] [02/Mar/2020:21:40:11.884206600 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138402] [02/Mar/2020:21:40:11.887134996 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc385000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138581] [02/Mar/2020:21:40:11.890268629 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138735] [02/Mar/2020:21:40:11.893379423 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [138972] [02/Mar/2020:21:40:11.896324057 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc385000000010000 5e5dc385 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [139264] [02/Mar/2020:21:40:11.900193672 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5e5dc385000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc385000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [139386] [02/Mar/2020:21:40:11.903264625 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [139656] [02/Mar/2020:21:40:11.906359525 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [139803] [02/Mar/2020:21:40:11.909408310 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No changes to send [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [139965] [02/Mar/2020:21:40:11.920312795 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140133] [02/Mar/2020:21:40:11.923750338 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140305] [02/Mar/2020:21:40:11.926835664 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140427] [02/Mar/2020:21:40:13.480939232 -0500] - DEBUG - _csngen_adjust_local_time - gen state before 5e5dc38b0001:1583203211:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140548] [02/Mar/2020:21:40:13.484736702 -0500] - DEBUG - _csngen_adjust_local_time - gen state after 5e5dc38d0000:1583203213:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140711] [02/Mar/2020:21:40:13.488085421 -0500] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5e5dc38d000000010000 into pending list [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [140891] [02/Mar/2020:21:40:13.491009418 -0500] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5e548905000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [141136] [02/Mar/2020:21:40:13.494836768 -0500] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 0e50268a-5cf811ea-b9d8a829-5d1ac630, optype: 8) to changelog csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [141404] [02/Mar/2020:21:40:13.497897838 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [141579] [02/Mar/2020:21:40:13.501056977 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5e5dc38d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [141847] [02/Mar/2020:21:40:13.503972464 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFileByReplicaName - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [141985] [02/Mar/2020:21:40:13.507217733 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [142115] [02/Mar/2020:21:40:13.510162676 -0500] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [142253] [02/Mar/2020:21:40:13.512965487 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [142381] [02/Mar/2020:21:40:13.515913350 -0500] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [142496] [02/Mar/2020:21:40:13.518803407 -0500] - 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: [142669] [02/Mar/2020:21:40:13.524879787 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [142850] [02/Mar/2020:21:40:13.536653723 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: wait_for_changes -> ready_to_acquire_replica [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143020] [02/Mar/2020:21:40:13.539953469 -0500] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-137-0:39201) - Canceling linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143186] [02/Mar/2020:21:40:13.544650716 -0500] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Replica was successfully acquired. [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143366] [02/Mar/2020:21:40:13.548038834 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: ready_to_acquire_replica -> sending_updates [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143481] [02/Mar/2020:21:40:13.551323778 -0500] - DEBUG - csngen_adjust_time - gen state before 5e5dc38d0002:1583203213:0:0 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143736] [02/Mar/2020:21:40:13.554421551 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5GetDBFile - found DB object 0x7f3ff9443440 for database /var/lib/dirsrv/slapd-master1/changelogdb/0e502686-5cf811ea-b9d8a829-5d1ac630_5e5dc327000000010000.db [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [143915] [02/Mar/2020:21:40:13.557632524 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Consumer RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [144069] [02/Mar/2020:21:40:13.560829014 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [144306] [02/Mar/2020:21:40:13.563905697 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc385000000010000 00000000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [144485] [02/Mar/2020:21:40:13.567534369 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-137-0:39201)): Supplier RUV: [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [144639] [02/Mar/2020:21:40:13.573737780 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replicageneration} 5e5dc327000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [144876] [02/Mar/2020:21:40:13.578970250 -0500] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-137-0:39201): {replica 1 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001} 5e5dc327000100010000 5e5dc38d000000010000 5e5dc38d [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [145036] [02/Mar/2020:21:40:13.582536805 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - found thread private buffer cache 0x7f3ff98b8500 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [145261] [02/Mar/2020:21:40:13.585572976 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_buffer - _pool is 0x7f401c6a8460 _pool->pl_busy_lists is 0x7f3ff9adb4c0 _pool->pl_busy_lists->bl_buffers is 0x7f3ff98b8500 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [145553] [02/Mar/2020:21:40:13.588780619 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5e5dc38d000000010000) csnBuf (00000000000000000000) csnConsumerMax (5e5dc385000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [145666] [02/Mar/2020:21:40:13.591573988 -0500] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5e5dc385000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [145855] [02/Mar/2020:21:40:13.594447382 -0500] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-137-0:39201): CSN 5e5dc385000000010000 found, position set for replay [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [146009] [02/Mar/2020:21:40:13.601562721 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_get_next_change - load=1 rec=1 csn=5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [146121] [02/Mar/2020:21:40:13.604811526 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [146253] [02/Mar/2020:21:40:13.608186194 -0500] - 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: [146471] [02/Mar/2020:21:40:13.611103209 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5e5dc38d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [146603] [02/Mar/2020:21:40:13.617116342 -0500] - 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: [146799] [02/Mar/2020:21:40:13.620405564 -0500] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-137-0:39201): Consumer successfully sent operation with csn 5e5dc38d000000010000 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [146932] [02/Mar/2020:21:40:13.623305908 -0500] - 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: [147062] [02/Mar/2020:21:40:13.626050605 -0500] - 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: [147373] [02/Mar/2020:21:40:13.629049069 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-137-0:39201) - (cscb 0 - state 1) - csnPrevMax (5e5dc38d000000010000) csnMax (5e5dc38d000000010000) csnBuf (5e5dc38d000000010000) csnConsumerMax (5e5dc38d000000010000) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [147495] [02/Mar/2020:21:40:13.632083011 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0:39201) - clcache_load_buffer - rc=-30988 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [147677] [02/Mar/2020:21:40:13.635087555 -0500] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-137-0:39201): No more updates to send (cl5GetNextOperationToReplay) [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [147790] [02/Mar/2020:21:40:13.638723634 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [147923] [02/Mar/2020:21:40:13.643907055 -0500] - 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: [148032] [02/Mar/2020:21:40:13.648110385 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [148302] [02/Mar/2020:21:40:13.652015956 -0500] - DEBUG - agmt="cn=201" (ci-vm-10-0-137-0: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: [148464] [02/Mar/2020:21:40:13.683555238 -0500] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-137-0:39201): Successfully released consumer [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [148632] [02/Mar/2020:21:40:13.687394170 -0500] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-137-0:39201) - Beginning linger on the connection [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [148804] [02/Mar/2020:21:40:13.713449906 -0500] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-137-0:39201): State: sending_updates -> wait_for_changes [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [148804] [35mDEBUG [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 148804 [32mINFO [0m tests.suites.schema.schema_replication_test:schema_replication_test.py:695 Testcase PASSED | |||
Passed | suites/schema/schema_test.py::test_schema_comparewithfiles | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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/10rfc2307.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/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.14 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m lib389:dscreate_test.py:42 Instance allocated [35mDEBUG [0m lib389:__init__.py:552 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:575 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:603 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone -------------------------------Captured log call-------------------------------- [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone [32mINFO [0m LogCapture.SetupDs:setup.py:651 NOOP: Dry run requested [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone | |||
Passed | suites/setup_ds/dscreate_test.py::test_setup_ds_minimal | 27.69 | |
-------------------------------Captured log setup------------------------------- [35mDEBUG [0m lib389:dscreate_test.py:42 Instance allocated [35mDEBUG [0m lib389:__init__.py:552 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:575 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:603 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone -------------------------------Captured log call-------------------------------- [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone [35mDEBUG [0m lib389:__init__.py:552 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:575 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:603 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:nss_ssl.py:191 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/slapd-standalone -f /etc/dirsrv/slapd-standalone/pwdfile.txt [35mDEBUG [0m lib389:nss_ssl.py:193 nss output: [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:191 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/ssca/ -f /etc/dirsrv/ssca//pwdfile.txt [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:193 nss output: [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:254 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 --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:256 nss output: Generating key. This may take a few moments... [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:268 nss cmd: /usr/bin/certutil -L -n Self-Signed-CA -d /etc/dirsrv/ssca/ -a [35mDEBUG [0m lib389.nss_ssl:nss_ssl.py:273 nss cmd: /usr/bin/c_rehash /etc/dirsrv/ssca/ [35mDEBUG [0m lib389:nss_ssl.py:537 CSR subject -> CN=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com,givenName=b95088e4-12ec-4f41-af76-b14ce346bca6,O=testing,L=389ds,ST=Queensland,C=AU [35mDEBUG [0m lib389:nss_ssl.py:538 CSR alt_names -> ['ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com'] [35mDEBUG [0m lib389:nss_ssl.py:570 nss cmd: /usr/bin/certutil -R --keyUsage digitalSignature,nonRepudiation,keyEncipherment,dataEncipherment --nsCertType sslClient,sslServer --extKeyUsage clientAuth,serverAuth -s CN=ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com,givenName=b95088e4-12ec-4f41-af76-b14ce346bca6,O=testing,L=389ds,ST=Queensland,C=AU -8 ci-vm-10-0-137-0.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:596 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:613 nss cmd: /usr/bin/c_rehash /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:nss_ssl.py:626 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:641 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:650 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:1231 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1131 systemd status -> True [35mDEBUG [0m lib389:__init__.py:991 open(): Connecting to uri ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:999 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1008 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1021 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1029 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1030 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1084 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.3.3 B2020.063.016 ] [35mDEBUG [0m lib389:__init__.py:991 open(): Connecting to uri ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:999 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1008 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1021 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1029 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1030 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1084 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.3.3 B2020.063.016 ] [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-secureport', '636') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-security', 'on') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-ldapifilepath', '/var/run/slapd-standalone.socket') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-ldapilisten', 'on') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-ldapiautobind', 'on') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-ldapimaprootdn', 'cn=Directory Manager') [35mDEBUG [0m Config:_mapped_object.py:435 cn=config set REPLACE: ('nsslapd-rootpw', '********') [35mDEBUG [0m lib389:__init__.py:1231 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1202 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1231 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1131 systemd status -> True [35mDEBUG [0m lib389:__init__.py:991 open(): Connecting to uri ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:999 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1008 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1021 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1029 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1030 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1084 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.3.3 B2020.063.016 ] [35mDEBUG [0m lib389:__init__.py:1231 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1202 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1231 systemd status -> True [35mDEBUG [0m lib389:__init__.py:1131 systemd status -> True [35mDEBUG [0m lib389:__init__.py:991 open(): Connecting to uri ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321/ [35mDEBUG [0m lib389:__init__.py:999 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1008 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1021 Using external ca certificate /etc/dirsrv/slapd-standalone [35mDEBUG [0m lib389:__init__.py:1029 Using certificate policy 1 [35mDEBUG [0m lib389:__init__.py:1030 ldap.OPT_X_TLS_REQUIRE_CERT = 1 [35mDEBUG [0m lib389:__init__.py:1084 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.3.3 B2020.063.016 ] [35mDEBUG [0m lib389.remove_ds:remove.py:39 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=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:1231 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:1231 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/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:552 Allocate <class 'lib389.DirSrv'> with None [35mDEBUG [0m lib389:__init__.py:575 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:603 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:54321 [35mDEBUG [0m lib389:__init__.py:740 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone | |||
Passed | suites/setup_ds/remove_test.py::test_basic[True] | 3.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.20 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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] | 6.81 | |
------------------------------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] | 6.91 | |
------------------------------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/stat/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr1-ldap.MOD_ADD-exp_values0-vucsn] | 0.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/stat/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr3-ldap.MOD_ADD-exp_values2-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/stat/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr4-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:99 Add user: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test | |||
Passed | suites/stat/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN1-ldap.MOD_ADD-exp_values0-vucsn] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/stat/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN2-ldap.MOD_ADD-exp_values1-vucsn] | 0.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/stat/mmt_state_test.py::test_check_cn_attr_state[cn-TestnewCN3-ldap.MOD_DELETE-None-None] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1 | |||
Passed | suites/stat/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-Chinese-ldap.MOD_REPLACE-exp_values0-vucsn] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/stat/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-French-ldap.MOD_ADD-None-None] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1 | |||
Passed | suites/stat/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower1-ldap.MOD_ADD-exp_values0-vucsn] | 0.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.stat.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.stat.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower2-ldap.MOD_ADD-exp_values1-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.stat.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.stat.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower3-ldap.MOD_ADD-exp_values2-vucsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.stat.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.stat.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.stat.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.stat.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_DELETE-exp_values4-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr [32mINFO [0m tests.suites.stat.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.stat.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef1-ldap.MOD_ADD-exp_values0-vucsn] | 0.04 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_ADD-exp_values1-vucsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/stat/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.stat.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_REPLACE-exp_values3-adcsn] | 0.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/stat/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_DELETE-exp_values4-vdcsn] | 0.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn [32mINFO [0m tests.suites.stat.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr | |||
Passed | suites/syntax/acceptance_test.py::test_valid | 3.85 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 6.32 | |
-------------------------------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.50 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:33 Creating LDIF... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:38 Importing LDIF... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:43 Search using server side sorting using undefined mr in the attr... [32mINFO [0m tests.suites.syntax.mr_test:mr_test.py:53 Test PASSED | |||
Passed | suites/tls/cipher_test.py::test_long_cipher_list | 19.42 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 26.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:32 default min: TLS1.2 max: TLS1.2 | |||
Passed | suites/tls/tls_check_crl_test.py::test_tls_check_crl | 14.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 26.22 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 28.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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:155 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-suffix: dc=example,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working | |||
Passed | tickets/ticket47560_test.py::test_ticket47560 | 15.22 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:849 fixupMemberOf task fixupmemberof_03022020_214526 for basedn dc=example,dc=com completed successfully | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_init | 0.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 already exists -------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:124 test_ticket47573_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7fc2c15595d0> (master <lib389.DirSrv object at 0x7fc2c1f6df90>, consumer <lib389.DirSrv object at 0x7fc2c15458d0> | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_one | 1.40 | |
-------------------------------Captured log call-------------------------------- [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:148 test_ticket47573_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7fc2c15595d0> (master <lib389.DirSrv object at 0x7fc2c1f6df90>, consumer <lib389.DirSrv object at 0x7fc2c15458d0> [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:113 trigger_schema_push: receive 0 (expected 1) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:161 test_ticket47573_one master_schema_csn=b'5e5dc4e1000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:162 ctest_ticket47573_one onsumer_schema_csn=b'5e5dc4e1000000000000' [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: [37] 389-Directory/1.4.3.3 B2020.063.016 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [120] ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 (/etc/dirsrv/slapd-master1) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [121] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [262] [02/Mar/2020:21:45:37.674181848 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [379] [02/Mar/2020:21:45:37.678640700 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [520] [02/Mar/2020:21:45:37.682670475 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [661] [02/Mar/2020:21:45:37.686250192 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [774] [02/Mar/2020:21:45:37.693370898 -0500] - ERR - bdb_config_upgrade_dse_info - create config entry from old config [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [968] [02/Mar/2020:21:45:37.696630873 -0500] - ERR - ldbm_config_modify_entry_callback - Executing for entry (cn=config,cn=ldbm database,cn=plugins,cn=config) with flags (0) operation is internal: 32 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1109] [02/Mar/2020:21:45:37.699903406 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1286] [02/Mar/2020:21:45:37.704058592 -0500] - 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: [1427] [02/Mar/2020:21:45:37.707246958 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1572] [02/Mar/2020:21:45:37.710162069 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7683264512, process usage 23343104 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1690] [02/Mar/2020:21:45:37.714855813 -0500] - INFO - check_and_set_import_cache - Import allocates 3001275KB import cache. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1831] [02/Mar/2020:21:45:37.718867548 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1938] [02/Mar/2020:21:45:37.986785664 -0500] - INFO - bdb_import_main - import userRoot: Beginning import job... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2066] [02/Mar/2020:21:45:37.990450512 -0500] - 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: [2188] [02/Mar/2020:21:45:38.191400471 -0500] - INFO - import_producer - import userRoot: Processing file "/tmp/ldif7svm3O.ldif" [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2329] [02/Mar/2020:21:45:38.195920022 -0500] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldif7svm3O.ldif" (9 entries) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2452] [02/Mar/2020:21:45:38.697352270 -0500] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2562] [02/Mar/2020:21:45:38.901391899 -0500] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2676] [02/Mar/2020:21:45:38.904895552 -0500] - INFO - bdb_import_main - import userRoot: Cleaning up producer thread... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2798] [02/Mar/2020:21:45:38.908171926 -0500] - INFO - bdb_import_main - import userRoot: Indexing complete. Post-processing... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2955] [02/Mar/2020:21:45:38.911071768 -0500] - 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: [3075] [02/Mar/2020:21:45:38.922881078 -0500] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3199] [02/Mar/2020:21:45:38.927318991 -0500] - INFO - bdb_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3330] [02/Mar/2020:21:45:38.931194285 -0500] - 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: [3462] [02/Mar/2020:21:45:38.934196559 -0500] - 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: [3592] [02/Mar/2020:21:45:38.936781529 -0500] - 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: [3734] [02/Mar/2020:21:45:38.943443119 -0500] - 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: [3873] [02/Mar/2020:21:45:38.946739029 -0500] - 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: [3975] [02/Mar/2020:21:45:38.950244056 -0500] - INFO - bdb_import_main - import userRoot: Flushing caches... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4075] [02/Mar/2020:21:45:38.953204092 -0500] - INFO - bdb_import_main - import userRoot: Closing files... [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4229] [02/Mar/2020:21:45:39.021316890 -0500] - INFO - bdb_import_main - import userRoot: Import complete. Processed 9 entries in 2 seconds. (4.50 entries/sec) [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4326] [02/Mar/2020:21:45:39.025513256 -0500] - INFO - bdb_pre_close - All database threads now stopped [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4429] [02/Mar/2020:21:45:39.213043086 -0500] - INFO - main - 389-Directory/1.4.3.3 B2020.063.016 starting up [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4537] [02/Mar/2020:21:45:39.245318943 -0500] - INFO - main - Setting the maximum file descriptor limit to: 524288 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4645] [02/Mar/2020:21:45:40.008131577 -0500] - INFO - PBKDF2_SHA256 - Based on CPU performance, chose 2048 rounds [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4802] [02/Mar/2020:21:45:40.020947503 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4919] [02/Mar/2020:21:45:40.030029537 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5076] [02/Mar/2020:21:45:40.033648375 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5233] [02/Mar/2020:21:45:40.037406383 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5346] [02/Mar/2020:21:45:40.050320954 -0500] - ERR - bdb_config_upgrade_dse_info - create config entry from old config [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5540] [02/Mar/2020:21:45:40.057120043 -0500] - ERR - ldbm_config_modify_entry_callback - Executing for entry (cn=config,cn=ldbm database,cn=plugins,cn=config) with flags (0) operation is internal: 32 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5697] [02/Mar/2020:21:45:40.063473496 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5796] [02/Mar/2020:21:45:40.067321713 -0500] - NOTICE - ldbm_back_start - found 8152580k physical memory [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5889] [02/Mar/2020:21:45:40.070972421 -0500] - NOTICE - ldbm_back_start - found 7501536k available [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5993] [02/Mar/2020:21:45:40.074574749 -0500] - NOTICE - ldbm_back_start - cache autosizing: db cache: 203814k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6150] [02/Mar/2020:21:45:40.078212491 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6276] [02/Mar/2020:21:45:40.081117397 -0500] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6433] [02/Mar/2020:21:45:40.084176867 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6555] [02/Mar/2020:21:45:40.087222699 -0500] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6712] [02/Mar/2020:21:45:40.090627628 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6812] [02/Mar/2020:21:45:40.093918885 -0500] - NOTICE - ldbm_back_start - total cache size: 787721830 B; [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6969] [02/Mar/2020:21:45:40.097224610 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/system.slice/system-dirsrv.slice/dirsrv@master1.service [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [7077] [02/Mar/2020:21:45:40.100639352 -0500] - INFO - bdb_start - Resizing db cache size: 3073305804 -> 166964838 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [7213] [02/Mar/2020:21:45:40.259697753 -0500] - 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: [7401] [02/Mar/2020:21:45:45.760127661 -0500] - 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: [7581] [02/Mar/2020:21:45:45.763275235 -0500] - 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: [7769] [02/Mar/2020:21:45:45.766482125 -0500] - 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: [7949] [02/Mar/2020:21:45:45.769665316 -0500] - 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: [8118] [02/Mar/2020:21:45:45.979441863 -0500] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-137-0:39201)". [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8302] [02/Mar/2020:21:45:45.983536098 -0500] - 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: [8447] [02/Mar/2020:21:45:45.986777769 -0500] - 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: [8464] objectclass: top [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8490] objectclass: ldapsubentry [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8520] objectclass: extensibleObject [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8542] cn: repl keep alive 1 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8727] [02/Mar/2020:21:45:48.816135466 -0500] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-137-0:39201)". Sent 12 entries. [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8727] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 8727 | |||
Passed | tickets/ticket47573_test.py::test_ticket47573_two | 1.31 | |
-------------------------------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'5e5dc4e2000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:193 test_ticket47573_two consumer_schema_csn=b'5e5dc4e2000000000000' [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:47 _pattern_errorlog: start at offset 8728 [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [8728] [35mDEBUG [0m tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 8728 | |||
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 | 7.48 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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 0x7fc2c1e92590> [32mINFO [0m lib389:ticket47619_test.py:62 test_ticket47619_init: 100 entries ADDed other_entry[0..99] | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_create_index | 5.69 | |
-------------------------------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.36 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214633 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214635 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214637 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214639 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214641 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214643 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214645 completed successfully [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_214647 completed successfully | |||
Passed | tickets/ticket47619_test.py::test_ticket47619_check_indexed_search | 0.10 | |
No log output captured. | |||
Passed | tickets/ticket47640_test.py::test_ticket47640 | 0.59 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.48 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 6.00 | |
-------------------------------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.31 | |
-------------------------------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 | 2.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 4.04 | |
-------------------------------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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47676_test.py::test_ticket47676_reject_action | 12.47 | |
-------------------------------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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 11.33 | |
-------------------------------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'20200303024833Z', Second lastLoginTime: b'20200303024835Z' [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 | 8.04 | |
-------------------------------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'20200303024846Z', Second lastLoginTime: b'20200303024847Z' [32mINFO [0m lib389:ticket47714_test.py:206 ticket47714 was successfully verified. | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_init | 3.68 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 2.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_1 | 3.75 | |
-------------------------------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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:158 Master 1 schemaCSN: b'5e5dc5ae000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:159 Master 2 schemaCSN: b'5e5dc5ae000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_2 | 3.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:163 Running test 2... [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:176 Master 1 schemaCSN: b'5e5dc5ae000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:177 Master 2 schemaCSN: b'5e5dc5ae000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_3 | 13.83 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket47721_test:ticket47721_test.py:195 Running test 3... [32mINFO [0m lib389:agreement.py:1188 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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:223 Master 1 schemaCSN: b'5e5dc5ae000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:224 Master 2 schemaCSN: b'5e5dc5bb000000000000' | |||
Passed | tickets/ticket47721_test.py::test_ticket47721_4 | 5.96 | |
-------------------------------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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:276 Master 1 schemaCSN: b'5e5dc5c4000000000000' [35mDEBUG [0m tests.tickets.ticket47721_test:ticket47721_test.py:277 Master 2 schemaCSN: b'5e5dc5c4000000000000' | |||
Passed | tickets/ticket47787_test.py::test_ticket47787_init | 3.11 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 17.39 | |
-------------------------------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:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 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:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:ticket47787_test.py:389 ######################### 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:410 ######################### Check MOD replicated on M1 ###################### | |||
Passed | tickets/ticket47808_test.py::test_ticket47808_run | 4.16 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 19.81 | |
-------------------------------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 | 10.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) [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.37 | |
-------------------------------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 | 8.68 | |
-------------------------------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.92 | |
-------------------------------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:526 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:532 Uniqueness not enforced: if same 'cn' modified (add/replace) on separated containers | |||
Passed | tickets/ticket47823_test.py::test_ticket47823_multi_containers_modrdn | 9.14 | |
-------------------------------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.84 | |
-------------------------------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.43 | |
-------------------------------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 | 5.32 | |
-------------------------------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.97 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.04 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.67 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.01 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.48 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.23 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.20 | |
------------------------------Captured stderr call------------------------------ Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. -------------------------------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.77 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.33 | |
-------------------------------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.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 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.28 | |
-------------------------------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.09 | |
-------------------------------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.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 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.11 | |
-------------------------------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.06 | |
-------------------------------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.16 | |
-------------------------------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.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 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.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 ####### 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.10 | |
-------------------------------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.11 | |
-------------------------------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.08 | |
-------------------------------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.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 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.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+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.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 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.11 | |
-------------------------------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.04 | |
-------------------------------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.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 ####### 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.63 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.30 | |
-------------------------------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.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 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.18 | |
-------------------------------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.01 | |
-------------------------------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.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 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.01 | |
-------------------------------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.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 ####### 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.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 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.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 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.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_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.04 | |
-------------------------------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.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. 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.04 | |
-------------------------------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.04 | |
-------------------------------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 | 5.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.03 | |
-------------------------------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 | 14.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working | |||
Passed | tickets/ticket47869MMR_test.py::test_ticket47869_check | 0.26 | |
-------------------------------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-137-0.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-137-0.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-137-0.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-137-0.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.79 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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 0x7fc2c295db50> | |||
Passed | tickets/ticket47871_test.py::test_ticket47871_1 | 1.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:ticket47871_test.py:72 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 | 12.02 | |
-------------------------------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 1 entries [32mINFO [0m lib389:ticket47871_test.py:95 changenumber=10,cn=changelog | |||
Passed | tickets/ticket47900_test.py::test_ticket47900 | 1.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:112 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:112 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:112 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:112 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:178 Password update failed as expected: password (2_Short) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:178 Password update failed as expected: password (No_Number) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:178 Password update failed as expected: password (N0Special) result (Constraint violation) [32mINFO [0m lib389:ticket47900_test.py:178 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.21 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 [02/Mar/2020:21:54:43] -E [02/Mar/2020:21:58:43] /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): 988 Total Log Lines Analysed: 9 ----------- Access Log Output ------------ Start of Logs: 02/Mar/2020:21:54:43 End of Logs: 02/Mar/2020:21:56:42.312015323 Processed Log Time: 0 Hours, 1 Minutes, 59.31201536 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) 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 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.13 | |
-------------------------------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 [02/Mar/2020:21:58:43] -E [02/Mar/2020:21:54:43] /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 ([02/Mar/2020:21:58:43]) is greater than end time ([02/Mar/2020:21:54:43])! 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.12 | |
-------------------------------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.11 | |
-------------------------------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 [02/Mar/2020:21:54:44] [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.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.40 | |
------------------------------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.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.64 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.27 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:101 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:112 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.17 | |
No log output captured. | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_three | 0.02 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:152 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.02 | |
-------------------------------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:199 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 | 4.63 | |
No log output captured. | |||
Passed | tickets/ticket47927_test.py::test_ticket47927_six | 0.71 | |
-------------------------------Captured log call-------------------------------- [31mCRITICAL[0m tests.tickets.ticket47927_test:ticket47927_test.py:241 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 | 55.96 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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-68: Traceback (most recent call last): File "/usr/lib64/python3.7/threading.py", line 926, 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.7/site-packages/lib389/__init__.py", line 180, in inner return f(*args, **kwargs) File "/usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py", line 921, in set_option return self._ldap_call(self._l.set_option,option,invalue) File "/usr/local/lib64/python3.7/site-packages/ldap/ldapobject.py", line 354, in __getattr__ self.__class__.__name__,repr(name) 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-suffix: dc=deadlock objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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 | 6.30 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:469 Import task import_03022020_215830 for file /var/lib/dirsrv/slapd-standalone1/ldif/ticket47953.ldif completed successfully | |||
Passed | tickets/ticket47963_test.py::test_ticket47963 | 8.38 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.52 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 3.48 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.90 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.57 | |
No log output captured. | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_2 | 4.27 | |
-------------------------------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:538 Export task export_03022020_215930 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:469 Import task import_03022020_215932 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully | |||
Passed | tickets/ticket47976_test.py::test_ticket47976_3 | 0.02 | |
-------------------------------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 | 5.20 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 3.55 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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-suffix: o=netscaperoot objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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 | 13.34 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:466 Error: import task import_03022020_220044 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 | 11.86 | |
------------------------------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:849 fixupMemberOf task fixupmemberof_03022020_220056 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.11 | |
------------------------------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:958 Automember Rebuild Membership task(task-03022020_220109) completedsuccessfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:176 No core files are found [32mINFO [0m lib389:tasks.py:1011 Automember Export Updates task (task-03022020_220112) completed successfully [32mINFO [0m tests.tickets.ticket48005_test:ticket48005_test.py:198 No core files are found [32mINFO [0m lib389:tasks.py:1058 Automember Map Updates task (task-03022020_220116) 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.49 | |
------------------------------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:1226 Syntax Validate task (task-03022020_220124) 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 | 2.86 | |
------------------------------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:1139 Schema Reload task (task-03022020_220133) 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/ticket48013_test.py::test_ticket48013 | 0.44 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.ticket48013_test:ticket48013_test.py:77 Testing cookie: # [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:84 Invalid cookie correctly rejected: Invalid session cookie [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:77 Testing cookie: ## [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:84 Invalid cookie correctly rejected: Invalid session cookie [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:77 Testing cookie: a#a#a [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:84 Invalid cookie correctly rejected: Invalid session cookie [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:77 Testing cookie: a#a#1 [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:84 Invalid cookie correctly rejected: Invalid session cookie [32mINFO [0m tests.tickets.ticket48013_test:ticket48013_test.py:88 Test complete | |||
Passed | tickets/ticket48026_test.py::test_ticket48026 | 4.94 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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: [02/Mar/2020:22:02:06.415946892 -0500] conn=1 op=3 RESULT err=0 tag=101 nentries=1 etime=0.000476950 [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: [02/Mar/2020:22:02:06.415946892 -0500] conn=1 op=3 RESULT err=0 tag=101 nentries=1 etime=0.000476950 [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: [02/Mar/2020:22:02:06.415946892 -0500] conn=1 op=3 RESULT err=0 tag=101 nentries=1 etime=0.000476950 [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: [02/Mar/2020:22:02:25.010629073 -0500] conn=1 op=4 RESULT err=0 tag=101 nentries=1 etime=0.000578462 [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:106 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 | 5.94 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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_1 | 7.32 | |
-------------------------------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, (NONE), Cipher is (NONE)\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.2, Cipher is AES256-SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_3 | 5.43 | |
-------------------------------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_4 | 7.09 | |
-------------------------------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, (NONE), Cipher is (NONE)\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.2, Cipher is AES256-SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_5 | 6.75 | |
-------------------------------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, (NONE), Cipher is (NONE)\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.2, Cipher is AES256-SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_6 | 6.80 | |
-------------------------------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, (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, SSLv3, Cipher is AES128-SHA\n' | |||
Passed | tickets/ticket48194_test.py::test_run_8 | 6.79 | |
-------------------------------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, (NONE), Cipher is (NONE)\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.2, Cipher is AES256-SHA256\n' | |||
Passed | tickets/ticket48194_test.py::test_run_11 | 6.32 | |
-------------------------------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 | 18.39 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ [02/Mar/2020:22:04:05.861905169 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.070786364 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:04:06.080821613 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.083874229 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.089410271 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.092507877 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.095349988 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.098131063 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.104348029 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.107471737 -0500] - WARN - ldbm_instance_add_instance_entry_callback - ldbm instance userRoot already exists [02/Mar/2020:22:04:06.110118808 -0500] - ERR - ldbm_config_read_instance_entries - Failed to add instance entry cn=userRoot,cn=ldbm database,cn=plugins,cn=config [02/Mar/2020:22:04:06.113588275 -0500] - ERR - bdb_config_load_dse_info - failed to read instance entries [02/Mar/2020:22:04:06.116583711 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:06.125173594 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [02/Mar/2020:22:04:06.130571128 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [02/Mar/2020:22:04:06.136111267 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [02/Mar/2020:22:04:06.140773469 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [02/Mar/2020:22:04:06.143542410 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [02/Mar/2020:22:04:06.147026099 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [02/Mar/2020:22:04:06.153731777 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [02/Mar/2020:22:04:06.161392481 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [02/Mar/2020:22:04:06.165509086 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [02/Mar/2020:22:04:06.169810223 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [02/Mar/2020:22:04:06.172921344 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [02/Mar/2020:22:04:06.177301306 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [02/Mar/2020:22:04:06.183494807 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [02/Mar/2020:22:04:06.187354284 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [02/Mar/2020:22:04:10.401286118 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.405350934 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:04:10.408403252 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.411700141 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.415000410 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.417877242 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.421247245 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.423986885 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.429197336 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.432147049 -0500] - WARN - ldbm_instance_add_instance_entry_callback - ldbm instance userRoot already exists [02/Mar/2020:22:04:10.434988226 -0500] - ERR - ldbm_config_read_instance_entries - Failed to add instance entry cn=userRoot,cn=ldbm database,cn=plugins,cn=config [02/Mar/2020:22:04:10.437725431 -0500] - ERR - bdb_config_load_dse_info - failed to read instance entries [02/Mar/2020:22:04:10.440790904 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:10.447840317 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [02/Mar/2020:22:04:10.452362324 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [02/Mar/2020:22:04:10.457952801 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [02/Mar/2020:22:04:10.461029119 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [02/Mar/2020:22:04:10.464071490 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [02/Mar/2020:22:04:10.467433063 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [02/Mar/2020:22:04:10.473179551 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [02/Mar/2020:22:04:10.484104934 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [02/Mar/2020:22:04:10.488320172 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [02/Mar/2020:22:04:10.493850846 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [02/Mar/2020:22:04:10.498823825 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [02/Mar/2020:22:04:10.503477311 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [02/Mar/2020:22:04:10.508886054 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [02/Mar/2020:22:04:10.512640976 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [02/Mar/2020:22:04:10.516053592 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [02/Mar/2020:22:04:14.844890243 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.868219475 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:04:14.871854960 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.875632428 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.880441009 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.883540663 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.886765567 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.889786718 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.897491813 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.901545323 -0500] - WARN - ldbm_instance_add_instance_entry_callback - ldbm instance userRoot already exists [02/Mar/2020:22:04:14.904562231 -0500] - ERR - ldbm_config_read_instance_entries - Failed to add instance entry cn=userRoot,cn=ldbm database,cn=plugins,cn=config [02/Mar/2020:22:04:14.907584973 -0500] - ERR - bdb_config_load_dse_info - failed to read instance entries [02/Mar/2020:22:04:14.910896642 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:14.917817853 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [02/Mar/2020:22:04:14.928141601 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [02/Mar/2020:22:04:14.947831381 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [02/Mar/2020:22:04:14.951295978 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [02/Mar/2020:22:04:14.954508258 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [02/Mar/2020:22:04:14.957821597 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [02/Mar/2020:22:04:14.963714146 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [02/Mar/2020:22:04:14.968059860 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [02/Mar/2020:22:04:14.974840304 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [02/Mar/2020:22:04:14.980103965 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [02/Mar/2020:22:04:14.983597052 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [02/Mar/2020:22:04:14.988072557 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [02/Mar/2020:22:04:14.994946887 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [02/Mar/2020:22:04:14.999421031 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [02/Mar/2020:22:04:15.006982025 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [02/Mar/2020:22:04:20.295488323 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.300774311 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:04:20.304409986 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.312026393 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.316212503 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.319758741 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.322980994 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.326110151 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.332305961 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.336168672 -0500] - WARN - ldbm_instance_add_instance_entry_callback - ldbm instance userRoot already exists [02/Mar/2020:22:04:20.339305086 -0500] - ERR - ldbm_config_read_instance_entries - Failed to add instance entry cn=userRoot,cn=ldbm database,cn=plugins,cn=config [02/Mar/2020:22:04:20.342489151 -0500] - ERR - bdb_config_load_dse_info - failed to read instance entries [02/Mar/2020:22:04:20.346090359 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:04:20.352589184 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [02/Mar/2020:22:04:20.357161870 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [02/Mar/2020:22:04:20.366286630 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [02/Mar/2020:22:04:20.374318721 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [02/Mar/2020:22:04:20.379411904 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [02/Mar/2020:22:04:20.382911902 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [02/Mar/2020:22:04:20.386340359 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [02/Mar/2020:22:04:20.389861468 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [02/Mar/2020:22:04:20.396589365 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [02/Mar/2020:22:04:20.402303147 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [02/Mar/2020:22:04:20.405813269 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [02/Mar/2020:22:04:20.410536138 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [02/Mar/2020:22:04:20.416376345 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [02/Mar/2020:22:04:20.420327929 -0500] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [02/Mar/2020:22:04:20.425759603 -0500] - 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:84 ######################### Import Test data (/var/lib/dirsrv/slapd-standalone1/ldif/example1k_posix.ldif) ###################### [32mINFO [0m lib389:tasks.py:469 Import task import_03022020_220402 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:768 Index task index_attrs_03022020_220406 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:768 Index task index_attrs_03022020_220410 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:768 Index task index_attrs_03022020_220415 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.71 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:94 ######################### 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.31 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 1.62 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.69 | |
------------------------------Captured stderr call------------------------------ [02/Mar/2020:22:05:45.082506119 -0500] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [02/Mar/2020:22:05:45.145286179 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.150030813 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:05:45.153790483 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.158198332 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.161619889 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.165035239 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.168367407 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.171647570 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.177819430 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.183532801 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.187001115 -0500] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [02/Mar/2020:22:05:45.190812796 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.194383056 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7683264512, process usage 22736896 [02/Mar/2020:22:05:45.197634363 -0500] - INFO - check_and_set_import_cache - Import allocates 3001275KB import cache. [02/Mar/2020:22:05:45.201080861 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:45.345501542 -0500] - INFO - bdb_db2index - userRoot: Indexing attribute: cn [02/Mar/2020:22:05:45.421896018 -0500] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [02/Mar/2020:22:05:45.425126437 -0500] - ERR - dblayer_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [02/Mar/2020:22:05:45.435129007 -0500] - INFO - bdb_db2index - userRoot: Finished indexing. [02/Mar/2020:22:05:45.461093186 -0500] - 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.28 | |
------------------------------Captured stderr call------------------------------ [02/Mar/2020:22:05:53.422636727 -0500] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [02/Mar/2020:22:05:53.428861075 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.433486156 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:05:53.437751300 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.441490121 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.444993389 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.448592207 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.451614967 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.455075491 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.460608621 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.464231641 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.467422284 -0500] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [02/Mar/2020:22:05:53.471047897 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.476708011 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7684931584, process usage 22630400 [02/Mar/2020:22:05:53.479282451 -0500] - INFO - check_and_set_import_cache - Import allocates 3001926KB import cache. [02/Mar/2020:22:05:53.481793379 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:05:53.631243480 -0500] - INFO - bdb_db2index - userRoot: Indexing attribute: objectclass [02/Mar/2020:22:05:53.634867222 -0500] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [02/Mar/2020:22:05:53.638287764 -0500] - ERR - dblayer_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [02/Mar/2020:22:05:53.645778615 -0500] - INFO - bdb_db2index - userRoot: Finished indexing. [02/Mar/2020:22:05:53.668183437 -0500] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | tickets/ticket48265_test.py::test_ticket48265_test | 2.30 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 20.66 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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/ticket48266_test.py::test_ticket48266_count_csn_evaluation | 37.69 | |
-------------------------------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': '[02/Mar/2020:22:06:48.951502087 -0500]', 'conn': '1', 'op': '12', 'rem': 'dn="cn=new_account2,dc=example,dc=com"', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 951502, tzinfo=tzoffset(None, -18000))} [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:146 {'action': 'RESULT', 'timestamp': '[02/Mar/2020:22:06:49.018217597 -0500]', 'conn': '1', 'op': '12', 'rem': 'err=0 tag=103 nentries=0 etime=0.066846638 csn=5e5dc9c8000000010000', 'err': '0', 'tag': '103', 'nentries': '0', 'etime': '0.066846638', 'csn': '5e5dc9c8000000010000', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 18217, tzinfo=tzoffset(None, -18000))} [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:201 after 102 MODs we have completed 2 replication sessions [32mINFO [0m lib389:ticket48266_test.py:90 dn: cn=new_account5,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:99 ############# cn=new_account5,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:105 {'action': 'MOD', 'timestamp': '[02/Mar/2020:22:07:08.193817366 -0500]', 'conn': '1', 'op': '121', 'rem': 'dn="cn=new_account5,dc=example,dc=com"', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 193817, tzinfo=tzoffset(None, -18000))} [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:111 {'action': 'RESULT', 'timestamp': '[02/Mar/2020:22:07:08.440039978 -0500]', 'conn': '1', 'op': '121', 'rem': 'err=0 tag=103 nentries=0 etime=0.246530072 csn=5e5dc9dc000100010000', 'err': '0', 'tag': '103', 'nentries': '0', 'etime': '0.246530072', 'csn': '5e5dc9dc000100010000', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 440039, tzinfo=tzoffset(None, -18000))} [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:220 This MODs 5e5dc9dc000100010000 triggered the send of the dummy update completed 1 replication sessions [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:ticket48266_test.py:90 dn: cn=new_account5,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:99 ############# cn=new_account5,dc=example,dc=com [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:105 {'action': 'MOD', 'timestamp': '[02/Mar/2020:22:07:18.971549330 -0500]', 'conn': '1', 'op': '127', 'rem': 'dn="cn=new_account5,dc=example,dc=com"', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 971549, tzinfo=tzoffset(None, -18000))} [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:111 {'action': 'RESULT', 'timestamp': '[02/Mar/2020:22:07:19.154533956 -0500]', 'conn': '1', 'op': '127', 'rem': 'err=0 tag=103 nentries=0 etime=0.183295149 csn=5e5dc9e7000000010000', 'err': '0', 'tag': '103', 'nentries': '0', 'etime': '0.183295149', 'csn': '5e5dc9e7000000010000', 'datetime': datetime.datetime(2020, 3, 2, 22, 0, 0, 154533, tzinfo=tzoffset(None, -18000))} [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:240 This MODs 5e5dc9e7000000010000 completed in 1 replication sessions, should be sent without evaluating 5e5dc9c8000000010000 [32mINFO [0m tests.tickets.ticket48266_test:ticket48266_test.py:260 Now check the we can not find the first csn 5e5dc9c8000000010000 in the log | |||
Passed | tickets/ticket48270_test.py::test_ticket48270_init | 1.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:768 Index task index_attrs_03022020_220738 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.65 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.55 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.26 | |
-------------------------------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.10 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.03 | |
-------------------------------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.50 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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/ticket48325_test.py::test_ticket48325 | 4.61 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:470 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2124 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m tests.tickets.ticket48325_test:ticket48325_test.py:125 Test complete | |||
Passed | tickets/ticket48342_test.py::test_ticket4026 | 92.68 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.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-137-0.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-137-0.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-137-0.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.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 92.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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-137-0.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-137-0.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.49 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.31 | |
No log output captured. | |||
Passed | tickets/ticket48366_test.py::test_ticket48366_search_dm | 0.11 | |
No log output captured. | |||
Passed | tickets/ticket48370_test.py::test_ticket48370 | 1.77 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.87 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 0.37 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.01 | |
No log output captured. | |||
Passed | tickets/ticket48497_test.py::test_ticket48497_extensible_search | 0.16 | |
-------------------------------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.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_221444 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.18 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.85 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.02 | |
-------------------------------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:768 Index task index_attrs_03022020_221513 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.12 | |
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 | 1.12 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.02 | |
-------------------------------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:768 Index task index_attrs_03022020_221524 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.02 | |
-------------------------------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:768 Index task index_attrs_03022020_221526 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.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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/ticket48798_test.py::test_ticket48798 | 22.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 error:num=19:self signed certificate in certificate chain verify return:1 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 = 2c20491f-f978-48d5-b925-6a5c97e24a38, CN = ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com verify return:1 DONE depth=1 C = AU, ST = Queensland, L = 389ds, O = testing, CN = ssca.389ds.example.com verify error:num=19:self signed certificate in certificate chain verify return:1 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 = 2c20491f-f978-48d5-b925-6a5c97e24a38, CN = ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com verify return:1 DONE | |||
Passed | tickets/ticket48799_test.py::test_ticket48799 | 15.58 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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 | 7.58 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:96 Set nsslapd-pagedsizelimit to b'15'. Previous value - [b'0']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:96 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:96 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'15']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:96 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:96 Set nsslapd-pagedsizelimit to b'5'. Previous value - [b'0']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:96 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:96 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'5']. Modified suffix - cn=config. [32mINFO [0m tests.tickets.ticket48808_test:ticket48808_test.py:96 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 | 2.73 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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-suffix: dc=bitwise,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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 | 5.55 | |
No log output captured. | |||
Passed | tickets/ticket48844_test.py::test_ticket48844_bitwise_off | 4.06 | |
No log output captured. | |||
Passed | tickets/ticket48891_test.py::test_ticket48891_setup | 2.67 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:53 ######################### 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-suffix: dc=ticket48891.org objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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:106 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 | 0.85 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 1.00 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.16 | |
-------------------------------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.18 | |
------------------------------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 | 7.28 | |
------------------------------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 | 7.47 | |
------------------------------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.46 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 107.98 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 already exists [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer2 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39202 already exists [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer2 from master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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 | 40.19 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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-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:155 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 | 1.63 | |
-------------------------------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.31 | |
-------------------------------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=[02/Mar/2020:22:24:23.867180984 -0500] conn=2 op=102 RESULT err=0 tag=101 nentries=1 etime=0.001055757 notes=U details="Partially Unindexed Filter | |||
Passed | tickets/ticket48973_test.py::test_ticket48973_homeDirectory_caseExactIA5Match_caseIgnoreIA5Match_indexing | 24.28 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m tests.tickets.ticket48973_test:ticket48973_test.py:273 index homeDirectory in caseExactIA5Match and caseIgnoreIA5Match [32mINFO [0m lib389:tasks.py:768 Index task index_attrs_03022020_222436 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=[02/Mar/2020:22:24:38.705334561 -0500] conn=1 op=9 RESULT err=0 tag=101 nentries=1 etime=0.001124071 [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=[02/Mar/2020:22:24:42.283723790 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=1 etime=0.000801502 [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=[02/Mar/2020:22:24:45.873476505 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=1 etime=0.000862897 [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=[02/Mar/2020:22:24:49.428568556 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0 etime=0.000633106 [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=[02/Mar/2020:22:24:53.245279346 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=0 etime=0.000749165 [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=[02/Mar/2020:22:24:57.084858924 -0500] conn=1 op=2 RESULT err=0 tag=101 nentries=1 etime=0.000829507 | |||
Passed | tickets/ticket49008_test.py::test_ticket49008 | 49.92 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 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-137-0.hosted.upshift.rdu2.redhat.com:39002} 5e5dce22000000020000 5e5dce4a000100020000' [32mINFO [0m tests.tickets.ticket49008_test:ticket49008_test.py:116 ruv after fail: b'{replica 2 ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002} 5e5dce22000000020000 5e5dce4a000100020000' | |||
Passed | tickets/ticket49020_test.py::test_ticket49020 | 36.66 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created -------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1163 Starting total init cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config | |||
Passed | tickets/ticket49039_test.py::test_ticket49039 | 16.79 | |
-----------------------------Captured stdout setup------------------------------ Instance slapd-standalone1 removed. -------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.09 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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_3_2_22_28_15, cn=memberOf task, cn=tasks, cn=config"\n' [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:63 Error log out: ['[02/Mar/2020:22:28:15.329291239 -0500] - 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.42 | |
-------------------------------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_3_2_22_28_35, cn=memberOf task, cn=tasks, cn=config"\n' [32mINFO [0m tests.tickets.ticket49072_test:ticket49072_test.py:104 Error log out: ['[02/Mar/2020:22:28:36.035711775 -0500] - 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.84 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.07 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 34.02 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:469 Import task import_03022020_222940 for file /var/lib/dirsrv/slapd-standalone1/ldif/49104.ldif completed successfully | |||
Passed | tickets/ticket49104_test.py::test_ticket49104 | 0.19 | |
------------------------------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.56 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.89 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master4 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master4 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master4 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.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:1089 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1089 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed [32mINFO [0m lib389:agreement.py:1089 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:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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.15 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 23.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.74 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.51 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 | 443.29 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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:155 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-suffix: dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=people,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=people,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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-1583206501.8992286-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206501.8992286-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206507.9115095-1,ou=people,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206507.9115095-2,ou=people,dc=test,dc=com): [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_0,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_0,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_1,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_1,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_2,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_2,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_3,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_3,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_4,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_4,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_5,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_5,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_6,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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-suffix: ou=be_6,dc=test,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.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-1583206696.5974271-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206696.5974271-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206702.1746686-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206702.1746686-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206707.8172104-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206707.8172104-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206713.031938-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206713.031938-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206718.2339864-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206718.2339864-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206723.437822-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206723.437822-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206728.7683802-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206728.7683802-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206741.2939022-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206741.2939022-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206747.3283262-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206747.3283262-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206752.4826076-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206752.4826076-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206757.7256556-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206757.7256556-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206762.9646049-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206762.9646049-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206768.2053142-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206768.2053142-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206773.3760948-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206773.3760948-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206784.1615386-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206784.1615386-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206790.0170147-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206790.0170147-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206795.2317145-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206795.2317145-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206801.24551-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206801.24551-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206806.5945523-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206806.5945523-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206811.765061-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206811.765061-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206816.9899914-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206816.9899914-2,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206836.014008-1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206836.014008-2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206842.5181148-1,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206842.5181148-2,ou=be_0,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206847.8098824-1,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206847.8098824-2,ou=be_1,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206853.0323353-1,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206853.0323353-2,ou=be_2,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206858.2164223-1,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206858.2164223-2,ou=be_3,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206863.4348857-1,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206863.4348857-2,ou=be_4,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206868.5980005-1,ou=be_5,dc=test,dc=com): [31mCRITICAL[0m tests.tickets.ticket49287_test:ticket49287_test.py:114 Adding user (cn=sync-1583206868.5980005-2,ou=be_5,dc=test,dc=com): | |||
Passed | tickets/ticket49290_test.py::test_49290_range_unindexed_notes | 4.70 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ [02/Mar/2020:22:41:33.388850431 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.440452644 -0500] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [02/Mar/2020:22:41:33.444193488 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.448647520 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.451985030 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.454724111 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.457271606 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.460089005 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.465183757 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.468165326 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.532186755 -0500] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [02/Mar/2020:22:41:33.535582390 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.538441534 -0500] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7683268608, process usage 22577152 [02/Mar/2020:22:41:33.543917799 -0500] - INFO - check_and_set_import_cache - Import allocates 3001276KB import cache. [02/Mar/2020:22:41:33.547383658 -0500] - INFO - spal_meminfo_get - Found cgroup v2 -> /sys/fs/cgroup/user.slice/user-0.slice/session-3.scope [02/Mar/2020:22:41:33.727413181 -0500] - INFO - bdb_db2index - userRoot: Indexing attribute: modifytimestamp [02/Mar/2020:22:41:33.731582950 -0500] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [02/Mar/2020:22:41:33.734518447 -0500] - ERR - dblayer_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [02/Mar/2020:22:41:33.788989446 -0500] - INFO - bdb_db2index - userRoot: Finished indexing. [02/Mar/2020:22:41:33.821868952 -0500] - INFO - bdb_pre_close - All database threads now stopped | |||
Passed | tickets/ticket49303_test.py::test_ticket49303 | 32.98 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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 [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:89 Renegotiation allowed by default - OK [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:94 Renegotiation disallowed - OK [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:99 Renegotiation explicitly allowed - OK [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:104 Renegotiation allowed when option is invalid - OK [32mINFO [0m tests.tickets.ticket49303_test:ticket49303_test.py:106 Ticket 49303 - PASSED | |||
Passed | tickets/ticket49386_test.py::test_ticket49386 | 32.80 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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: [02/Mar/2020:22:42:52.940665112 -0500] - DEBUG - memberof-plugin - memberof_postop_modrdn: Skip modrdn operation because src/dst identical cn=group_1,ou=Groups,dc=example,dc=com | |||
Passed | tickets/ticket49412_test.py::test_ticket49412 | 0.01 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:166 Joining consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is working [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.topologies:topologies.py:171 Ensuring consumer consumer1 from master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 already exists | |||
Passed | tickets/ticket49441_test.py::test_ticket49441 | 8.57 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:466 Error: import task import_03022020_224322 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 | 14.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.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:106 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 | 24.04 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:768 Index task index_attrs_03022020_225044 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_03022020_225044,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_03022020_225044,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_03022020_225044,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_03022020_225044,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_03022020_225044,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_03022020_225044,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:71 cn=index_attrs_03022020_225044,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 =========> 7 th loop [32mINFO [0m tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_03022020_225044,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_03022020_225044,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_03022020_225044,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' | |||
Passed | tickets/ticket49623_2_test.py::test_modrdn_loop | 0.13 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:139 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 | 6.26 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:139 Creating replication topology. [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 [32mINFO [0m lib389.topologies:topologies.py:153 Joining master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is working [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 is working [32mINFO [0m lib389.replica:replica.py:2066 SUCCESS: joined master from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master2 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master1 to master3 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master2 to master3 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 is was created [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master1 ... [32mINFO [0m lib389.replica:replica.py:2251 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 already exists [32mINFO [0m lib389.topologies:topologies.py:161 Ensuring master master3 to master2 ... [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-137-0.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 | 34.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:606 Search M1 employeeNumber=b'3' (vs. b'3') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:612 Search M2 employeeNumber=b'3' (vs. b'3') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:620 Search M3 employeeNumber=b'3' (vs. b'3') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_4 | 33.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:712 Search M1 employeeNumber=b'4' (vs. b'4') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:718 Search M2 employeeNumber=b'4' (vs. b'4') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:726 Search M3 employeeNumber=b'4' (vs. b'4') | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_5 | 33.57 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:817 Search M1 employeeNumber=b'5' (vs. b'5') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:823 Search M2 employeeNumber=b'5' (vs. b'5') [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:831 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:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:932 Search M1 employeeNumber=b'6.2' (vs. 6.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:938 Search M2 employeeNumber=b'6.2' (vs. 6.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:946 Search M3 employeeNumber=b'6.2' (vs. 6.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_7 | 33.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1040 Search M1 employeeNumber=b'7.2' (vs. 7.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1046 Search M2 employeeNumber=b'7.2' (vs. 7.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1054 Search M3 employeeNumber=b'7.2' (vs. 7.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_8 | 33.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1148 Search M1 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1154 Search M2 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1162 Search M3 employeeNumber=b'8.2' (vs. 8.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_9 | 33.59 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1257 Search M1 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1263 Search M2 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1271 Search M3 employeeNumber=b'9.2' (vs. 9.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_10 | 33.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1367 Search M1 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1373 Search M2 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1381 Search M3 employeeNumber=b'10.2' (vs. 10.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_11 | 33.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1477 Search M1 employeeNumber=b'11.1' (vs. 11.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1483 Search M2 employeeNumber=b'11.1' (vs. 11.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1491 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:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1592 Search M1 employeeNumber=b'12.1' (vs. 12.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1598 Search M2 employeeNumber=b'12.1' (vs. 12.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1606 Search M3 employeeNumber=b'12.1' (vs. 12.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_13 | 33.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1707 Search M1 employeeNumber=b'13.1' (vs. 13.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1713 Search M2 employeeNumber=b'13.1' (vs. 13.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1721 Search M3 employeeNumber=b'13.1' (vs. 13.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_14 | 33.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1823 Search M1 employeeNumber=b'14.1' (vs. 14.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1829 Search M2 employeeNumber=b'14.1' (vs. 14.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1837 Search M3 employeeNumber=b'14.1' (vs. 14.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_15 | 33.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:1938 Search M1 employeeNumber=b'15.1' (vs. 15.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1944 Search M2 employeeNumber=b'15.1' (vs. 15.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:1952 Search M3 employeeNumber=b'15.1' (vs. 15.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_16 | 37.68 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2074 Search M1 employeeNumber=b'1.1' (vs. 1.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2080 Search M2 employeeNumber=b'1.1' (vs. 1.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2088 Search M3 employeeNumber=b'1.1' (vs. 1.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_17 | 37.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2181 Search M1 employeeNumber=b'2.2' (vs. 2.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2187 Search M2 employeeNumber=b'2.2' (vs. 2.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2195 Search M3 employeeNumber=b'2.2' (vs. 2.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_18 | 37.71 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2287 Search M1 employeeNumber=b'3.2' (vs. 3.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2293 Search M2 employeeNumber=b'3.2' (vs. 3.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2301 Search M3 employeeNumber=b'3.2' (vs. 3.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_19 | 38.61 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2403 Search M1 employeeNumber=b'4.1' (vs. 4.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2409 Search M2 employeeNumber=b'4.1' (vs. 4.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2417 Search M3 employeeNumber=b'4.1' (vs. 4.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_20 | 38.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2518 Search M1 employeeNumber=b'5.1' (vs. 5.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2524 Search M2 employeeNumber=b'5.1' (vs. 5.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2532 Search M3 employeeNumber=b'5.1' (vs. 5.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_21 | 38.73 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2633 Search M1 employeeNumber=b'6.1' (vs. 6.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2639 Search M2 employeeNumber=b'6.1' (vs. 6.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2647 Search M3 employeeNumber=b'6.1' (vs. 6.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_22 | 38.76 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2748 Search M1 employeeNumber=b'7.1' (vs. 7.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2754 Search M2 employeeNumber=b'7.1' (vs. 7.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2762 Search M3 employeeNumber=b'7.1' (vs. 7.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_23 | 39.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2871 Search M1 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2877 Search M2 employeeNumber=b'8.2' (vs. 8.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:2885 Search M3 employeeNumber=b'8.2' (vs. 8.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_24 | 39.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:2994 Search M1 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3000 Search M2 employeeNumber=b'9.2' (vs. 9.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3008 Search M3 employeeNumber=b'9.2' (vs. 9.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_25 | 39.63 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3117 Search M1 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3123 Search M2 employeeNumber=b'10.2' (vs. 10.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3131 Search M3 employeeNumber=b'10.2' (vs. 10.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_26 | 39.62 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3240 Search M1 employeeNumber=b'11.2' (vs. 11.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3246 Search M2 employeeNumber=b'11.2' (vs. 11.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3254 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:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3363 Search M1 employeeNumber=b'12.2' (vs. 12.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3369 Search M2 employeeNumber=b'12.2' (vs. 12.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3377 Search M3 employeeNumber=b'12.2' (vs. 12.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_28 | 39.74 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3486 Search M1 employeeNumber=b'13.2' (vs. 13.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3492 Search M2 employeeNumber=b'13.2' (vs. 13.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3500 Search M3 employeeNumber=b'13.2' (vs. 13.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_29 | 40.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3610 Search M1 employeeNumber=b'14.2' (vs. 14.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3616 Search M2 employeeNumber=b'14.2' (vs. 14.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3624 Search M3 employeeNumber=b'14.2' (vs. 14.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_30 | 39.64 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3733 Search M1 employeeNumber=b'15.2' (vs. 15.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3739 Search M2 employeeNumber=b'15.2' (vs. 15.2) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3747 Search M3 employeeNumber=b'15.2' (vs. 15.2) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_31 | 40.58 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3864 Search M1 employeeNumber=b'16.1' (vs. 16.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3870 Search M2 employeeNumber=b'16.1' (vs. 16.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:3878 Search M3 employeeNumber=b'16.1' (vs. 16.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_32 | 40.68 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:3996 Search M1 employeeNumber=b'17.1' (vs. 17.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4002 Search M2 employeeNumber=b'17.1' (vs. 17.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4010 Search M3 employeeNumber=b'17.1' (vs. 17.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_33 | 40.69 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:4120 Search M1 employeeNumber=b'18.1' (vs. 18.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4126 Search M2 employeeNumber=b'18.1' (vs. 18.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4134 Search M3 employeeNumber=b'18.1' (vs. 18.1) | |||
Passed | tickets/ticket49658_test.py::test_ticket49658_34 | 40.71 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1188 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config [32mINFO [0m lib389:agreement.py:1214 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:4244 Search M1 employeeNumber=b'19.1' (vs. 19.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4250 Search M2 employeeNumber=b'19.1' (vs. 19.1) [32mINFO [0m tests.tickets.ticket49658_test:ticket49658_test.py:4258 Search M3 employeeNumber=b'19.1' (vs. 19.1) | |||
Passed | tickets/ticket49788_test.py::test_ticket49781 | 0.96 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.25 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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:106 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:106 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:470 Creating replication topology. [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is was created [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 is working [32mINFO [0m lib389.replica:replica.py:2124 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 [32mINFO [0m lib389.replica:replica.py:1997 SUCCESS: bootstrap to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 completed [32mINFO [0m lib389.replica:replica.py:2278 SUCCESS: Agreement from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 is was created [32mINFO [0m lib389.replica:replica.py:2181 SUCCESS: joined consumer from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39201 [32mINFO [0m lib389.replica:replica.py:2409 SUCCESS: Replication from ldap://ci-vm-10-0-137-0.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-137-0.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/ticket50232_test.py::test_ticket50232_normal | 11.28 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. ------------------------------Captured stderr call------------------------------ ldiffile: /tmp/output_file [02/Mar/2020:23:14:24.925522564 -0500] - INFO - slapd_exemode_ldif2db - Backend Instance: normal -------------------------------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-suffix: o=normal objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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 | |||
Passed | tickets/ticket50232_test.py::test_ticket50232_reverse | 11.03 | |
------------------------------Captured stderr call------------------------------ ldiffile: /tmp/output_file [02/Mar/2020:23:14:36.487927248 -0500] - INFO - slapd_exemode_ldif2db - Backend Instance: reverse -------------------------------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-suffix: o=reverse objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance [32mINFO [0m lib389:mappingTree.py:155 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 | |||
Passed | tickets/ticket50234_test.py::test_ticket50234 | 0.87 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.93 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m lib389.topologies:topologies.py:106 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.76 | |
No log output captured. | |||
Passed | tickets/ticket548_test.py::test_ticket548_test_subtree_policy | 3.38 | |
No log output captured. |